home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / adodb / adodb.inc.php < prev    next >
PHP Script  |  2005-05-17  |  114KB  |  3,853 lines

  1. <?php 
  2. /*
  3.  * Set tabs to 4 for best viewing.
  4.  * 
  5.  * Latest version is available at http://adodb.sourceforge.net
  6.  * 
  7.  * This is the main include file for ADOdb.
  8.  * Database specific drivers are stored in the adodb/drivers/adodb-*.inc.php
  9.  *
  10.  * The ADOdb files are formatted so that doxygen can be used to generate documentation.
  11.  * Doxygen is a documentation generation tool and can be downloaded from http://doxygen.org/
  12.  */
  13.  
  14. /**
  15.     \mainpage     
  16.     
  17.      @version V4.63 17 May 2005  (c) 2000-2005 John Lim (jlim#natsoft.com.my). All rights reserved.
  18.  
  19.     Released under both BSD license and Lesser GPL library license. You can choose which license
  20.     you prefer.
  21.     
  22.     PHP's database access functions are not standardised. This creates a need for a database 
  23.     class library to hide the differences between the different database API's (encapsulate 
  24.     the differences) so we can easily switch databases.
  25.  
  26.     We currently support MySQL, Oracle, Microsoft SQL Server, Sybase, Sybase SQL Anywhere, DB2,
  27.     Informix, PostgreSQL, FrontBase, Interbase (Firebird and Borland variants), Foxpro, Access,
  28.     ADO, SAP DB, SQLite and ODBC. We have had successful reports of connecting to Progress and
  29.     other databases via ODBC.
  30.  
  31.     Latest Download at http://php.weblogs.com/adodb<br>
  32.     Manual is at http://php.weblogs.com/adodb_manual
  33.       
  34.  */
  35.  
  36.  if (!defined('_ADODB_LAYER')) {
  37.      define('_ADODB_LAYER',1);
  38.     
  39.     //==============================================================================================    
  40.     // CONSTANT DEFINITIONS
  41.     //==============================================================================================    
  42.  
  43.  
  44.     /** 
  45.      * Set ADODB_DIR to the directory where this file resides...
  46.      * This constant was formerly called $ADODB_RootPath
  47.      */
  48.     if (!defined('ADODB_DIR')) define('ADODB_DIR',dirname(__FILE__));
  49.     
  50.     //==============================================================================================    
  51.     // GLOBAL VARIABLES
  52.     //==============================================================================================    
  53.  
  54.     GLOBAL 
  55.         $ADODB_vers,         // database version
  56.         $ADODB_COUNTRECS,    // count number of records returned - slows down query
  57.         $ADODB_CACHE_DIR,    // directory to cache recordsets
  58.         $ADODB_EXTENSION,   // ADODB extension installed
  59.         $ADODB_COMPAT_FETCH, // If $ADODB_COUNTRECS and this is true, $rs->fields is available on EOF
  60.          $ADODB_FETCH_MODE;    // DEFAULT, NUM, ASSOC or BOTH. Default follows native driver default...
  61.     
  62.     //==============================================================================================    
  63.     // GLOBAL SETUP
  64.     //==============================================================================================    
  65.     
  66.     $ADODB_EXTENSION = defined('ADODB_EXTENSION');
  67.     
  68.     //********************************************************//
  69.     /*
  70.     Controls $ADODB_FORCE_TYPE mode. Default is ADODB_FORCE_VALUE (3).
  71.     Used in GetUpdateSql and GetInsertSql functions. Thx to Niko, nuko#mbnet.fi
  72.  
  73.          0 = ignore empty fields. All empty fields in array are ignored.
  74.         1 = force null. All empty, php null and string 'null' fields are changed to sql NULL values.
  75.         2 = force empty. All empty, php null and string 'null' fields are changed to sql empty '' or 0 values.
  76.         3 = force value. Value is left as it is. Php null and string 'null' are set to sql NULL values and empty fields '' are set to empty '' sql values.
  77.     */
  78.         define('ADODB_FORCE_IGNORE',0);
  79.         define('ADODB_FORCE_NULL',1);
  80.         define('ADODB_FORCE_EMPTY',2);
  81.         define('ADODB_FORCE_VALUE',3);
  82.     //********************************************************//
  83.  
  84.  
  85.     if (!$ADODB_EXTENSION || ADODB_EXTENSION < 4.0) {
  86.         
  87.         define('ADODB_BAD_RS','<p>Bad $rs in %s. Connection or SQL invalid. Try using $connection->debug=true;</p>');
  88.     
  89.     // allow [ ] @ ` " and . in table names
  90.         define('ADODB_TABLE_REGEX','([]0-9a-z_\:\"\`\.\@\[-]*)');
  91.     
  92.     // prefetching used by oracle
  93.         if (!defined('ADODB_PREFETCH_ROWS')) define('ADODB_PREFETCH_ROWS',10);
  94.     
  95.     
  96.     /*
  97.     Controls ADODB_FETCH_ASSOC field-name case. Default is 2, use native case-names.
  98.     This currently works only with mssql, odbc, oci8po and ibase derived drivers.
  99.     
  100.          0 = assoc lowercase field names. $rs->fields['orderid']
  101.         1 = assoc uppercase field names. $rs->fields['ORDERID']
  102.         2 = use native-case field names. $rs->fields['OrderID']
  103.     */
  104.     
  105.         define('ADODB_FETCH_DEFAULT',0);
  106.         define('ADODB_FETCH_NUM',1);
  107.         define('ADODB_FETCH_ASSOC',2);
  108.         define('ADODB_FETCH_BOTH',3);
  109.         
  110.         if (!defined('TIMESTAMP_FIRST_YEAR')) define('TIMESTAMP_FIRST_YEAR',100);
  111.     
  112.         // PHP's version scheme makes converting to numbers difficult - workaround
  113.         $_adodb_ver = (float) PHP_VERSION;
  114.         if ($_adodb_ver >= 5.0) {
  115.             define('ADODB_PHPVER',0x5000);
  116.         } else if ($_adodb_ver > 4.299999) { # 4.3
  117.             define('ADODB_PHPVER',0x4300);
  118.         } else if ($_adodb_ver > 4.199999) { # 4.2
  119.             define('ADODB_PHPVER',0x4200);
  120.         } else if (strnatcmp(PHP_VERSION,'4.0.5')>=0) {
  121.             define('ADODB_PHPVER',0x4050);
  122.         } else {
  123.             define('ADODB_PHPVER',0x4000);
  124.         }
  125.     }
  126.     
  127.     //if (!defined('ADODB_ASSOC_CASE')) define('ADODB_ASSOC_CASE',2);
  128.  
  129.     
  130.     /**
  131.          Accepts $src and $dest arrays, replacing string $data
  132.     */
  133.     function ADODB_str_replace($src, $dest, $data)
  134.     {
  135.         if (ADODB_PHPVER >= 0x4050) return str_replace($src,$dest,$data);
  136.         
  137.         $s = reset($src);
  138.         $d = reset($dest);
  139.         while ($s !== false) {
  140.             $data = str_replace($s,$d,$data);
  141.             $s = next($src);
  142.             $d = next($dest);
  143.         }
  144.         return $data;
  145.     }
  146.     
  147.     function ADODB_Setup()
  148.     {
  149.     GLOBAL 
  150.         $ADODB_vers,         // database version
  151.         $ADODB_COUNTRECS,    // count number of records returned - slows down query
  152.         $ADODB_CACHE_DIR,    // directory to cache recordsets
  153.          $ADODB_FETCH_MODE,
  154.         $ADODB_FORCE_TYPE;
  155.         
  156.         $ADODB_FETCH_MODE = ADODB_FETCH_DEFAULT;
  157.         $ADODB_FORCE_TYPE = ADODB_FORCE_VALUE;
  158.  
  159.  
  160.         if (!isset($ADODB_CACHE_DIR)) {
  161.             $ADODB_CACHE_DIR = '/tmp'; //(isset($_ENV['TMP'])) ? $_ENV['TMP'] : '/tmp';
  162.         } else {
  163.             // do not accept url based paths, eg. http:/ or ftp:/
  164.             if (strpos($ADODB_CACHE_DIR,'://') !== false) 
  165.                 die("Illegal path http:// or ftp://");
  166.         }
  167.         
  168.             
  169.         // Initialize random number generator for randomizing cache flushes
  170.         srand(((double)microtime())*1000000);
  171.         
  172.         /**
  173.          * ADODB version as a string.
  174.          */
  175.         $ADODB_vers = 'V4.63 17 May 2005  (c) 2000-2005 John Lim (jlim#natsoft.com.my). All rights reserved. Released BSD & LGPL.';
  176.     
  177.         /**
  178.          * Determines whether recordset->RecordCount() is used. 
  179.          * Set to false for highest performance -- RecordCount() will always return -1 then
  180.          * for databases that provide "virtual" recordcounts...
  181.          */
  182.         if (!isset($ADODB_COUNTRECS)) $ADODB_COUNTRECS = true; 
  183.     }
  184.     
  185.     
  186.     //==============================================================================================    
  187.     // CHANGE NOTHING BELOW UNLESS YOU ARE DESIGNING ADODB
  188.     //==============================================================================================    
  189.     
  190.     ADODB_Setup();
  191.  
  192.     //==============================================================================================    
  193.     // CLASS ADOFieldObject
  194.     //==============================================================================================    
  195.     /**
  196.      * Helper class for FetchFields -- holds info on a column
  197.      */
  198.     class ADOFieldObject { 
  199.         var $name = '';
  200.         var $max_length=0;
  201.         var $type="";
  202. /*
  203.         // additional fields by dannym... (danny_milo@yahoo.com)
  204.         var $not_null = false; 
  205.         // actually, this has already been built-in in the postgres, fbsql AND mysql module? ^-^
  206.         // so we can as well make not_null standard (leaving it at "false" does not harm anyways)
  207.  
  208.         var $has_default = false; // this one I have done only in mysql and postgres for now ... 
  209.             // others to come (dannym)
  210.         var $default_value; // default, if any, and supported. Check has_default first.
  211. */
  212.     }
  213.     
  214.  
  215.     
  216.     function ADODB_TransMonitor($dbms, $fn, $errno, $errmsg, $p1, $p2, &$thisConnection)
  217.     {
  218.         //print "Errorno ($fn errno=$errno m=$errmsg) ";
  219.         $thisConnection->_transOK = false;
  220.         if ($thisConnection->_oldRaiseFn) {
  221.             $fn = $thisConnection->_oldRaiseFn;
  222.             $fn($dbms, $fn, $errno, $errmsg, $p1, $p2,$thisConnection);
  223.         }
  224.     }
  225.     
  226.     //==============================================================================================    
  227.     // CLASS ADOConnection
  228.     //==============================================================================================    
  229.     
  230.     /**
  231.      * Connection object. For connecting to databases, and executing queries.
  232.      */ 
  233.     class ADOConnection {
  234.     //
  235.     // PUBLIC VARS 
  236.     //
  237.     var $dataProvider = 'native';
  238.     var $databaseType = '';        /// RDBMS currently in use, eg. odbc, mysql, mssql                    
  239.     var $database = '';            /// Name of database to be used.    
  240.     var $host = '';             /// The hostname of the database server    
  241.     var $user = '';             /// The username which is used to connect to the database server. 
  242.     var $password = '';         /// Password for the username. For security, we no longer store it.
  243.     var $debug = false;         /// if set to true will output sql statements
  244.     var $maxblobsize = 262144;     /// maximum size of blobs or large text fields (262144 = 256K)-- some db's die otherwise like foxpro
  245.     var $concat_operator = '+'; /// default concat operator -- change to || for Oracle/Interbase    
  246.     var $substr = 'substr';        /// substring operator
  247.     var $length = 'length';        /// string length ofperator
  248.     var $random = 'rand()';        /// random function
  249.     var $upperCase = 'upper';        /// uppercase function
  250.     var $fmtDate = "'Y-m-d'";    /// used by DBDate() as the default date format used by the database
  251.     var $fmtTimeStamp = "'Y-m-d, h:i:s A'"; /// used by DBTimeStamp as the default timestamp fmt.
  252.     var $true = '1';             /// string that represents TRUE for a database
  253.     var $false = '0';             /// string that represents FALSE for a database
  254.     var $replaceQuote = "\\'";     /// string to use to replace quotes
  255.     var $nameQuote = '"';        /// string to use to quote identifiers and names
  256.     var $charSet=false;         /// character set to use - only for interbase, postgres and oci8
  257.     var $metaDatabasesSQL = '';
  258.     var $metaTablesSQL = '';
  259.     var $uniqueOrderBy = false; /// All order by columns have to be unique
  260.     var $emptyDate = ' ';
  261.     var $emptyTimeStamp = ' ';
  262.     var $lastInsID = false;
  263.     //--
  264.     var $hasInsertID = false;         /// supports autoincrement ID?
  265.     var $hasAffectedRows = false;     /// supports affected rows for update/delete?
  266.     var $hasTop = false;            /// support mssql/access SELECT TOP 10 * FROM TABLE
  267.     var $hasLimit = false;            /// support pgsql/mysql SELECT * FROM TABLE LIMIT 10
  268.     var $readOnly = false;             /// this is a readonly database - used by phpLens
  269.     var $hasMoveFirst = false;  /// has ability to run MoveFirst(), scrolling backwards
  270.     var $hasGenID = false;         /// can generate sequences using GenID();
  271.     var $hasTransactions = true; /// has transactions
  272.     //--
  273.     var $genID = 0;             /// sequence id used by GenID();
  274.     var $raiseErrorFn = false;     /// error function to call
  275.     var $isoDates = false; /// accepts dates in ISO format
  276.     var $cacheSecs = 3600; /// cache for 1 hour
  277.     var $sysDate = false; /// name of function that returns the current date
  278.     var $sysTimeStamp = false; /// name of function that returns the current timestamp
  279.     var $arrayClass = 'ADORecordSet_array'; /// name of class used to generate array recordsets, which are pre-downloaded recordsets
  280.     
  281.     var $noNullStrings = false; /// oracle specific stuff - if true ensures that '' is converted to ' '
  282.     var $numCacheHits = 0; 
  283.     var $numCacheMisses = 0;
  284.     var $pageExecuteCountRows = true;
  285.     var $uniqueSort = false; /// indicates that all fields in order by must be unique
  286.     var $leftOuter = false; /// operator to use for left outer join in WHERE clause
  287.     var $rightOuter = false; /// operator to use for right outer join in WHERE clause
  288.     var $ansiOuter = false; /// whether ansi outer join syntax supported
  289.     var $autoRollback = false; // autoRollback on PConnect().
  290.     var $poorAffectedRows = false; // affectedRows not working or unreliable
  291.     
  292.     var $fnExecute = false;
  293.     var $fnCacheExecute = false;
  294.     var $blobEncodeType = false; // false=not required, 'I'=encode to integer, 'C'=encode to char
  295.     var $rsPrefix = "ADORecordSet_";
  296.     
  297.     var $autoCommit = true;     /// do not modify this yourself - actually private
  298.     var $transOff = 0;             /// temporarily disable transactions
  299.     var $transCnt = 0;             /// count of nested transactions
  300.     
  301.     var $fetchMode=false;
  302.      //
  303.      // PRIVATE VARS
  304.      //
  305.     var $_oldRaiseFn =  false;
  306.     var $_transOK = null;
  307.     var $_connectionID    = false;    /// The returned link identifier whenever a successful database connection is made.    
  308.     var $_errorMsg = false;        /// A variable which was used to keep the returned last error message.  The value will
  309.                                 /// then returned by the errorMsg() function    
  310.     var $_errorCode = false;    /// Last error code, not guaranteed to be used - only by oci8                    
  311.     var $_queryID = false;        /// This variable keeps the last created result link identifier
  312.     
  313.     var $_isPersistentConnection = false;    /// A boolean variable to state whether its a persistent connection or normal connection.    */
  314.     var $_bindInputArray = false; /// set to true if ADOConnection.Execute() permits binding of array parameters.
  315.     var $_evalAll = false;
  316.     var $_affected = false;
  317.     var $_logsql = false;
  318.     
  319.  
  320.     
  321.     /**
  322.      * Constructor
  323.      */
  324.     function ADOConnection()            
  325.     {
  326.         die('Virtual Class -- cannot instantiate');
  327.     }
  328.     
  329.     function Version()
  330.     {
  331.     global $ADODB_vers;
  332.     
  333.         return (float) substr($ADODB_vers,1);
  334.     }
  335.     
  336.     /**
  337.         Get server version info...
  338.         
  339.         @returns An array with 2 elements: $arr['string'] is the description string, 
  340.             and $arr[version] is the version (also a string).
  341.     */
  342.     function ServerInfo()
  343.     {
  344.         return array('description' => '', 'version' => '');
  345.     }
  346.     
  347.     function IsConnected()
  348.     {
  349.         return !empty($this->_connectionID);
  350.     }
  351.     
  352.     function _findvers($str)
  353.     {
  354.         if (preg_match('/([0-9]+\.([0-9\.])+)/',$str, $arr)) return $arr[1];
  355.         else return '';
  356.     }
  357.     
  358.     /**
  359.     * All error messages go through this bottleneck function.
  360.     * You can define your own handler by defining the function name in ADODB_OUTP.
  361.     */
  362.     function outp($msg,$newline=true)
  363.     {
  364.     global $ADODB_FLUSH,$ADODB_OUTP;
  365.     
  366.         if (defined('ADODB_OUTP')) {
  367.             $fn = ADODB_OUTP;
  368.             $fn($msg,$newline);
  369.             return;
  370.         } else if (isset($ADODB_OUTP)) {
  371.             $fn = $ADODB_OUTP;
  372.             $fn($msg,$newline);
  373.             return;
  374.         }
  375.         
  376.         if ($newline) $msg .= "<br>\n";
  377.         
  378.         if (isset($_SERVER['HTTP_USER_AGENT']) || !$newline) echo $msg;
  379.         else echo strip_tags($msg);
  380.     
  381.         
  382.         if (!empty($ADODB_FLUSH) && ob_get_length() !== false) flush(); //  do not flush if output buffering enabled - useless - thx to Jesse Mullan 
  383.         
  384.     }
  385.     
  386.     function Time()
  387.     {
  388.         $rs =& $this->_Execute("select $this->sysTimeStamp");
  389.         if ($rs && !$rs->EOF) return $this->UnixTimeStamp(reset($rs->fields));
  390.         
  391.         return false;
  392.     }
  393.     
  394.     /**
  395.      * Connect to database
  396.      *
  397.      * @param [argHostname]        Host to connect to
  398.      * @param [argUsername]        Userid to login
  399.      * @param [argPassword]        Associated password
  400.      * @param [argDatabaseName]    database
  401.      * @param [forceNew]        force new connection
  402.      *
  403.      * @return true or false
  404.      */      
  405.     function Connect($argHostname = "", $argUsername = "", $argPassword = "", $argDatabaseName = "", $forceNew = false) 
  406.     {
  407.         if ($argHostname != "") $this->host = $argHostname;
  408.         if ($argUsername != "") $this->user = $argUsername;
  409.         if ($argPassword != "") $this->password = $argPassword; // not stored for security reasons
  410.         if ($argDatabaseName != "") $this->database = $argDatabaseName;        
  411.         
  412.         $this->_isPersistentConnection = false;    
  413.         if ($forceNew) {
  414.             if ($rez=$this->_nconnect($this->host, $this->user, $this->password, $this->database)) return true;
  415.         } else {
  416.              if ($rez=$this->_connect($this->host, $this->user, $this->password, $this->database)) return true;
  417.         }
  418.         if (isset($rez)) {
  419.             $err = $this->ErrorMsg();
  420.             if (empty($err)) $err = "Connection error to server '$argHostname' with user '$argUsername'";
  421.             $ret = false;
  422.         } else {
  423.             $err = "Missing extension for ".$this->dataProvider;
  424.             $ret = 0;
  425.         }
  426.         if ($fn = $this->raiseErrorFn) 
  427.             $fn($this->databaseType,'CONNECT',$this->ErrorNo(),$err,$this->host,$this->database,$this);
  428.         
  429.         
  430.         $this->_connectionID = false;
  431.         if ($this->debug) ADOConnection::outp( $this->host.': '.$err);
  432.         return $ret;
  433.     }    
  434.     
  435.     function _nconnect($argHostname, $argUsername, $argPassword, $argDatabaseName)
  436.     {
  437.         return $this->_connect($argHostname, $argUsername, $argPassword, $argDatabaseName);
  438.     }
  439.     
  440.     
  441.     /**
  442.      * Always force a new connection to database - currently only works with oracle
  443.      *
  444.      * @param [argHostname]        Host to connect to
  445.      * @param [argUsername]        Userid to login
  446.      * @param [argPassword]        Associated password
  447.      * @param [argDatabaseName]    database
  448.      *
  449.      * @return true or false
  450.      */      
  451.     function NConnect($argHostname = "", $argUsername = "", $argPassword = "", $argDatabaseName = "") 
  452.     {
  453.         return $this->Connect($argHostname, $argUsername, $argPassword, $argDatabaseName, true);
  454.     }
  455.     
  456.     /**
  457.      * Establish persistent connect to database
  458.      *
  459.      * @param [argHostname]        Host to connect to
  460.      * @param [argUsername]        Userid to login
  461.      * @param [argPassword]        Associated password
  462.      * @param [argDatabaseName]    database
  463.      *
  464.      * @return return true or false
  465.      */    
  466.     function PConnect($argHostname = "", $argUsername = "", $argPassword = "", $argDatabaseName = "")
  467.     {
  468.         if (defined('ADODB_NEVER_PERSIST')) 
  469.             return $this->Connect($argHostname,$argUsername,$argPassword,$argDatabaseName);
  470.         
  471.         if ($argHostname != "") $this->host = $argHostname;
  472.         if ($argUsername != "") $this->user = $argUsername;
  473.         if ($argPassword != "") $this->password = $argPassword;
  474.         if ($argDatabaseName != "") $this->database = $argDatabaseName;        
  475.             
  476.         $this->_isPersistentConnection = true;    
  477.         if ($rez = $this->_pconnect($this->host, $this->user, $this->password, $this->database)) return true;
  478.         if (isset($rez)) {
  479.             $err = $this->ErrorMsg();
  480.             if (empty($err)) $err = "Connection error to server '$argHostname' with user '$argUsername'";
  481.             $ret = false;
  482.         } else {
  483.             $err = "Missing extension for ".$this->dataProvider;
  484.             $ret = 0;
  485.         }
  486.         if ($fn = $this->raiseErrorFn) {
  487.             $fn($this->databaseType,'PCONNECT',$this->ErrorNo(),$err,$this->host,$this->database,$this);
  488.         }
  489.         
  490.         $this->_connectionID = false;
  491.         if ($this->debug) ADOConnection::outp( $this->host.': '.$err);
  492.         return $ret;
  493.     }
  494.  
  495.     // Format date column in sql string given an input format that understands Y M D
  496.     function SQLDate($fmt, $col=false)
  497.     {    
  498.         if (!$col) $col = $this->sysDate;
  499.         return $col; // child class implement
  500.     }
  501.     
  502.     /**
  503.      * Should prepare the sql statement and return the stmt resource.
  504.      * For databases that do not support this, we return the $sql. To ensure
  505.      * compatibility with databases that do not support prepare:
  506.      *
  507.      *   $stmt = $db->Prepare("insert into table (id, name) values (?,?)");
  508.      *   $db->Execute($stmt,array(1,'Jill')) or die('insert failed');
  509.      *   $db->Execute($stmt,array(2,'Joe')) or die('insert failed');
  510.      *
  511.      * @param sql    SQL to send to database
  512.      *
  513.      * @return return FALSE, or the prepared statement, or the original sql if
  514.      *             if the database does not support prepare.
  515.      *
  516.      */    
  517.     function Prepare($sql)
  518.     {
  519.         return $sql;
  520.     }
  521.     
  522.     /**
  523.      * Some databases, eg. mssql require a different function for preparing
  524.      * stored procedures. So we cannot use Prepare().
  525.      *
  526.      * Should prepare the stored procedure  and return the stmt resource.
  527.      * For databases that do not support this, we return the $sql. To ensure
  528.      * compatibility with databases that do not support prepare:
  529.      *
  530.      * @param sql    SQL to send to database
  531.      *
  532.      * @return return FALSE, or the prepared statement, or the original sql if
  533.      *             if the database does not support prepare.
  534.      *
  535.      */    
  536.     function PrepareSP($sql,$param=true)
  537.     {
  538.         return $this->Prepare($sql,$param);
  539.     }
  540.     
  541.     /**
  542.     * PEAR DB Compat
  543.     */
  544.     function Quote($s)
  545.     {
  546.         return $this->qstr($s,false);
  547.     }
  548.     
  549.     /**
  550.      Requested by "Karsten Dambekalns" <k.dambekalns@fishfarm.de>
  551.     */
  552.     function QMagic($s)
  553.     {
  554.         return $this->qstr($s,get_magic_quotes_gpc());
  555.     }
  556.  
  557.     function q(&$s)
  558.     {
  559.         $s = $this->qstr($s,false);
  560.     }
  561.     
  562.     /**
  563.     * PEAR DB Compat - do not use internally. 
  564.     */
  565.     function ErrorNative()
  566.     {
  567.         return $this->ErrorNo();
  568.     }
  569.  
  570.     
  571.    /**
  572.     * PEAR DB Compat - do not use internally. 
  573.     */
  574.     function nextId($seq_name)
  575.     {
  576.         return $this->GenID($seq_name);
  577.     }
  578.  
  579.     /**
  580.     *     Lock a row, will escalate and lock the table if row locking not supported
  581.     *    will normally free the lock at the end of the transaction
  582.     *
  583.     *  @param $table    name of table to lock
  584.     *  @param $where    where clause to use, eg: "WHERE row=12". If left empty, will escalate to table lock
  585.     */
  586.     function RowLock($table,$where)
  587.     {
  588.         return false;
  589.     }
  590.     
  591.     function CommitLock($table)
  592.     {
  593.         return $this->CommitTrans();
  594.     }
  595.     
  596.     function RollbackLock($table)
  597.     {
  598.         return $this->RollbackTrans();
  599.     }
  600.     
  601.     /**
  602.     * PEAR DB Compat - do not use internally. 
  603.     *
  604.     * The fetch modes for NUMERIC and ASSOC for PEAR DB and ADODB are identical
  605.     *     for easy porting :-)
  606.     *
  607.     * @param mode    The fetchmode ADODB_FETCH_ASSOC or ADODB_FETCH_NUM
  608.     * @returns        The previous fetch mode
  609.     */
  610.     function SetFetchMode($mode)
  611.     {    
  612.         $old = $this->fetchMode;
  613.         $this->fetchMode = $mode;
  614.         
  615.         if ($old === false) {
  616.         global $ADODB_FETCH_MODE;
  617.             return $ADODB_FETCH_MODE;
  618.         }
  619.         return $old;
  620.     }
  621.     
  622.  
  623.     /**
  624.     * PEAR DB Compat - do not use internally. 
  625.     */
  626.     function &Query($sql, $inputarr=false)
  627.     {
  628.         $rs = &$this->Execute($sql, $inputarr);
  629.         if (!$rs && defined('ADODB_PEAR')) return ADODB_PEAR_Error();
  630.         return $rs;
  631.     }
  632.  
  633.     
  634.     /**
  635.     * PEAR DB Compat - do not use internally
  636.     */
  637.     function &LimitQuery($sql, $offset, $count, $params=false)
  638.     {
  639.         $rs = &$this->SelectLimit($sql, $count, $offset, $params); 
  640.         if (!$rs && defined('ADODB_PEAR')) return ADODB_PEAR_Error();
  641.         return $rs;
  642.     }
  643.  
  644.     
  645.     /**
  646.     * PEAR DB Compat - do not use internally
  647.     */
  648.     function Disconnect()
  649.     {
  650.         return $this->Close();
  651.     }
  652.     
  653.     /*
  654.          Returns placeholder for parameter, eg.
  655.          $DB->Param('a')
  656.          
  657.          will return ':a' for Oracle, and '?' for most other databases...
  658.          
  659.          For databases that require positioned params, eg $1, $2, $3 for postgresql,
  660.              pass in Param(false) before setting the first parameter.
  661.     */
  662.     function Param($name,$type='C')
  663.     {
  664.         return '?';
  665.     }
  666.     
  667.     /*
  668.         InParameter and OutParameter are self-documenting versions of Parameter().
  669.     */
  670.     function InParameter(&$stmt,&$var,$name,$maxLen=4000,$type=false)
  671.     {
  672.         return $this->Parameter($stmt,$var,$name,false,$maxLen,$type);
  673.     }
  674.     
  675.     /*
  676.     */
  677.     function OutParameter(&$stmt,&$var,$name,$maxLen=4000,$type=false)
  678.     {
  679.         return $this->Parameter($stmt,$var,$name,true,$maxLen,$type);
  680.     
  681.     }
  682.     
  683.     /* 
  684.     Usage in oracle
  685.         $stmt = $db->Prepare('select * from table where id =:myid and group=:group');
  686.         $db->Parameter($stmt,$id,'myid');
  687.         $db->Parameter($stmt,$group,'group',64);
  688.         $db->Execute();
  689.         
  690.         @param $stmt Statement returned by Prepare() or PrepareSP().
  691.         @param $var PHP variable to bind to
  692.         @param $name Name of stored procedure variable name to bind to.
  693.         @param [$isOutput] Indicates direction of parameter 0/false=IN  1=OUT  2= IN/OUT. This is ignored in oci8.
  694.         @param [$maxLen] Holds an maximum length of the variable.
  695.         @param [$type] The data type of $var. Legal values depend on driver.
  696.  
  697.     */
  698.     function Parameter(&$stmt,&$var,$name,$isOutput=false,$maxLen=4000,$type=false)
  699.     {
  700.         return false;
  701.     }
  702.     
  703.     /**
  704.         Improved method of initiating a transaction. Used together with CompleteTrans().
  705.         Advantages include:
  706.         
  707.         a. StartTrans/CompleteTrans is nestable, unlike BeginTrans/CommitTrans/RollbackTrans.
  708.            Only the outermost block is treated as a transaction.<br>
  709.         b. CompleteTrans auto-detects SQL errors, and will rollback on errors, commit otherwise.<br>
  710.         c. All BeginTrans/CommitTrans/RollbackTrans inside a StartTrans/CompleteTrans block
  711.            are disabled, making it backward compatible.
  712.     */
  713.     function StartTrans($errfn = 'ADODB_TransMonitor')
  714.     {
  715.         if ($this->transOff > 0) {
  716.             $this->transOff += 1;
  717.             return;
  718.         }
  719.         
  720.         $this->_oldRaiseFn = $this->raiseErrorFn;
  721.         $this->raiseErrorFn = $errfn;
  722.         $this->_transOK = true;
  723.         
  724.         if ($this->debug && $this->transCnt > 0) ADOConnection::outp("Bad Transaction: StartTrans called within BeginTrans");
  725.         $this->BeginTrans();
  726.         $this->transOff = 1;
  727.     }
  728.     
  729.     
  730.     /**
  731.         Used together with StartTrans() to end a transaction. Monitors connection
  732.         for sql errors, and will commit or rollback as appropriate.
  733.         
  734.         @autoComplete if true, monitor sql errors and commit and rollback as appropriate, 
  735.         and if set to false force rollback even if no SQL error detected.
  736.         @returns true on commit, false on rollback.
  737.     */
  738.     function CompleteTrans($autoComplete = true)
  739.     {
  740.         if ($this->transOff > 1) {
  741.             $this->transOff -= 1;
  742.             return true;
  743.         }
  744.         $this->raiseErrorFn = $this->_oldRaiseFn;
  745.         
  746.         $this->transOff = 0;
  747.         if ($this->_transOK && $autoComplete) {
  748.             if (!$this->CommitTrans()) {
  749.                 $this->_transOK = false;
  750.                 if ($this->debug) ADOConnection::outp("Smart Commit failed");
  751.             } else
  752.                 if ($this->debug) ADOConnection::outp("Smart Commit occurred");
  753.         } else {
  754.             $this->RollbackTrans();
  755.             if ($this->debug) ADOCOnnection::outp("Smart Rollback occurred");
  756.         }
  757.         
  758.         return $this->_transOK;
  759.     }
  760.     
  761.     /*
  762.         At the end of a StartTrans/CompleteTrans block, perform a rollback.
  763.     */
  764.     function FailTrans()
  765.     {
  766.         if ($this->debug) 
  767.             if ($this->transOff == 0) {
  768.                 ADOConnection::outp("FailTrans outside StartTrans/CompleteTrans");
  769.             } else {
  770.                 ADOConnection::outp("FailTrans was called");
  771.                 adodb_backtrace();
  772.             }
  773.         $this->_transOK = false;
  774.     }
  775.     
  776.     /**
  777.         Check if transaction has failed, only for Smart Transactions.
  778.     */
  779.     function HasFailedTrans()
  780.     {
  781.         if ($this->transOff > 0) return $this->_transOK == false;
  782.         return false;
  783.     }
  784.     
  785.     /**
  786.      * Execute SQL 
  787.      *
  788.      * @param sql        SQL statement to execute, or possibly an array holding prepared statement ($sql[0] will hold sql text)
  789.      * @param [inputarr]    holds the input data to bind to. Null elements will be set to null.
  790.      * @return         RecordSet or false
  791.      */
  792.     function &Execute($sql,$inputarr=false) 
  793.     {
  794.         if ($this->fnExecute) {
  795.             $fn = $this->fnExecute;
  796.             $ret =& $fn($this,$sql,$inputarr);
  797.             if (isset($ret)) return $ret;
  798.         }
  799.         if ($inputarr) {
  800.             if (!is_array($inputarr)) $inputarr = array($inputarr);
  801.             
  802.             $element0 = reset($inputarr);
  803.             # is_object check because oci8 descriptors can be passed in
  804.             $array_2d = is_array($element0) && !is_object(reset($element0));
  805.             
  806.             if (!is_array($sql) && !$this->_bindInputArray) {
  807.                 $sqlarr = explode('?',$sql);
  808.                     
  809.                 if (!$array_2d) $inputarr = array($inputarr);
  810.                 foreach($inputarr as $arr) {
  811.                     $sql = ''; $i = 0;
  812.                     foreach($arr as $v) {
  813.                         $sql .= $sqlarr[$i];
  814.                         // from Ron Baldwin <ron.baldwin#sourceprose.com>
  815.                         // Only quote string types    
  816.                         $typ = gettype($v);
  817.                         if ($typ == 'string')
  818.                             $sql .= $this->qstr($v);
  819.                         else if ($typ == 'double')
  820.                             $sql .= str_replace(',','.',$v); // locales fix so 1.1 does not get converted to 1,1
  821.                         else if ($typ == 'boolean')
  822.                             $sql .= $v ? $this->true : $this->false;
  823.                         else if ($v === null)
  824.                             $sql .= 'NULL';
  825.                         else
  826.                             $sql .= $v;
  827.                         $i += 1;
  828.                     }
  829.                     if (isset($sqlarr[$i])) {
  830.                         $sql .= $sqlarr[$i];
  831.                         if ($i+1 != sizeof($sqlarr)) ADOConnection::outp( "Input Array does not match ?: ".htmlspecialchars($sql));
  832.                     } else if ($i != sizeof($sqlarr))    
  833.                         ADOConnection::outp( "Input array does not match ?: ".htmlspecialchars($sql));
  834.         
  835.                     $ret =& $this->_Execute($sql);
  836.                     if (!$ret) return $ret;
  837.                 }    
  838.             } else {
  839.                 if ($array_2d) {
  840.                     if (is_string($sql))
  841.                         $stmt = $this->Prepare($sql);
  842.                     else
  843.                         $stmt = $sql;
  844.                         
  845.                     foreach($inputarr as $arr) {
  846.                         $ret =& $this->_Execute($stmt,$arr);
  847.                         if (!$ret) return $ret;
  848.                     }
  849.                 } else {
  850.                     $ret =& $this->_Execute($sql,$inputarr);
  851.                 }
  852.             }
  853.         } else {
  854.             $ret =& $this->_Execute($sql,false);
  855.         }
  856.  
  857.         return $ret;
  858.     }
  859.     
  860.     
  861.     function &_Execute($sql,$inputarr=false)
  862.     {
  863.  
  864.         if ($this->debug) {
  865.             global $ADODB_INCLUDED_LIB;
  866.             if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  867.             $this->_queryID = _adodb_debug_execute($this, $sql,$inputarr);
  868.         } else {
  869.             $this->_queryID = @$this->_query($sql,$inputarr);
  870.         }
  871.         
  872.         /************************
  873.         // OK, query executed
  874.         *************************/
  875.  
  876.         if ($this->_queryID === false) { // error handling if query fails
  877.             if ($this->debug == 99) adodb_backtrace(true,5);    
  878.             $fn = $this->raiseErrorFn;
  879.             if ($fn) {
  880.                 $fn($this->databaseType,'EXECUTE',$this->ErrorNo(),$this->ErrorMsg(),$sql,$inputarr,$this);
  881.             } 
  882.             $false = false;
  883.             return $false;
  884.         } 
  885.         
  886.         if ($this->_queryID === true) { // return simplified recordset for inserts/updates/deletes with lower overhead
  887.             $rs =& new ADORecordSet_empty();
  888.             return $rs;
  889.         }
  890.         
  891.         // return real recordset from select statement
  892.         $rsclass = $this->rsPrefix.$this->databaseType;
  893.         $rs =& new $rsclass($this->_queryID,$this->fetchMode);
  894.         $rs->connection = &$this; // Pablo suggestion
  895.         $rs->Init();
  896.         if (is_array($sql)) $rs->sql = $sql[0];
  897.         else $rs->sql = $sql;
  898.         if ($rs->_numOfRows <= 0) {
  899.         global $ADODB_COUNTRECS;
  900.             if ($ADODB_COUNTRECS) {
  901.                 if (!$rs->EOF) { 
  902.                     $rs = &$this->_rs2rs($rs,-1,-1,!is_array($sql));
  903.                     $rs->_queryID = $this->_queryID;
  904.                 } else
  905.                     $rs->_numOfRows = 0;
  906.             }
  907.         }
  908.         return $rs;
  909.     }
  910.  
  911.     function CreateSequence($seqname='adodbseq',$startID=1)
  912.     {
  913.         if (empty($this->_genSeqSQL)) return false;
  914.         return $this->Execute(sprintf($this->_genSeqSQL,$seqname,$startID));
  915.     }
  916.  
  917.     function DropSequence($seqname='adodbseq')
  918.     {
  919.         if (empty($this->_dropSeqSQL)) return false;
  920.         return $this->Execute(sprintf($this->_dropSeqSQL,$seqname));
  921.     }
  922.  
  923.     /**
  924.      * Generates a sequence id and stores it in $this->genID;
  925.      * GenID is only available if $this->hasGenID = true;
  926.      *
  927.      * @param seqname        name of sequence to use
  928.      * @param startID        if sequence does not exist, start at this ID
  929.      * @return        0 if not supported, otherwise a sequence id
  930.      */
  931.     function GenID($seqname='adodbseq',$startID=1)
  932.     {
  933.         if (!$this->hasGenID) {
  934.             return 0; // formerly returns false pre 1.60
  935.         }
  936.         
  937.         $getnext = sprintf($this->_genIDSQL,$seqname);
  938.         
  939.         $holdtransOK = $this->_transOK;
  940.         
  941.         $save_handler = $this->raiseErrorFn;
  942.         $this->raiseErrorFn = '';
  943.         @($rs = $this->Execute($getnext));
  944.         $this->raiseErrorFn = $save_handler;
  945.         
  946.         if (!$rs) {
  947.             $this->_transOK = $holdtransOK; //if the status was ok before reset
  948.             $createseq = $this->Execute(sprintf($this->_genSeqSQL,$seqname,$startID));
  949.             $rs = $this->Execute($getnext);
  950.         }
  951.         if ($rs && !$rs->EOF) $this->genID = reset($rs->fields);
  952.         else $this->genID = 0; // false
  953.     
  954.         if ($rs) $rs->Close();
  955.  
  956.         return $this->genID;
  957.     }    
  958.  
  959.     /**
  960.      * @param $table string name of the table, not needed by all databases (eg. mysql), default ''
  961.      * @param $column string name of the column, not needed by all databases (eg. mysql), default ''
  962.      * @return  the last inserted ID. Not all databases support this.
  963.      */ 
  964.     function Insert_ID($table='',$column='')
  965.     {
  966.         if ($this->_logsql && $this->lastInsID) return $this->lastInsID;
  967.         if ($this->hasInsertID) return $this->_insertid($table,$column);
  968.         if ($this->debug) {
  969.             ADOConnection::outp( '<p>Insert_ID error</p>');
  970.             adodb_backtrace();
  971.         }
  972.         return false;
  973.     }
  974.  
  975.  
  976.     /**
  977.      * Portable Insert ID. Pablo Roca <pabloroca#mvps.org>
  978.      *
  979.      * @return  the last inserted ID. All databases support this. But aware possible
  980.      * problems in multiuser environments. Heavy test this before deploying.
  981.      */ 
  982.     function PO_Insert_ID($table="", $id="") 
  983.     {
  984.        if ($this->hasInsertID){
  985.            return $this->Insert_ID($table,$id);
  986.        } else {
  987.            return $this->GetOne("SELECT MAX($id) FROM $table");
  988.        }
  989.     }
  990.  
  991.     /**
  992.     * @return # rows affected by UPDATE/DELETE
  993.     */ 
  994.     function Affected_Rows()
  995.     {
  996.         if ($this->hasAffectedRows) {
  997.             if ($this->fnExecute === 'adodb_log_sql') {
  998.                 if ($this->_logsql && $this->_affected !== false) return $this->_affected;
  999.             }
  1000.             $val = $this->_affectedrows();
  1001.             return ($val < 0) ? false : $val;
  1002.         }
  1003.                   
  1004.         if ($this->debug) ADOConnection::outp( '<p>Affected_Rows error</p>',false);
  1005.         return false;
  1006.     }
  1007.     
  1008.     
  1009.     /**
  1010.      * @return  the last error message
  1011.      */
  1012.     function ErrorMsg()
  1013.     {
  1014.         return '!! '.strtoupper($this->dataProvider.' '.$this->databaseType).': '.$this->_errorMsg;
  1015.     }
  1016.     
  1017.     
  1018.     /**
  1019.      * @return the last error number. Normally 0 means no error.
  1020.      */
  1021.     function ErrorNo() 
  1022.     {
  1023.         return ($this->_errorMsg) ? -1 : 0;
  1024.     }
  1025.     
  1026.     function MetaError($err=false)
  1027.     {
  1028.         include_once(ADODB_DIR."/adodb-error.inc.php");
  1029.         if ($err === false) $err = $this->ErrorNo();
  1030.         return adodb_error($this->dataProvider,$this->databaseType,$err);
  1031.     }
  1032.     
  1033.     function MetaErrorMsg($errno)
  1034.     {
  1035.         include_once(ADODB_DIR."/adodb-error.inc.php");
  1036.         return adodb_errormsg($errno);
  1037.     }
  1038.     
  1039.     /**
  1040.      * @returns an array with the primary key columns in it.
  1041.      */
  1042.     function MetaPrimaryKeys($table, $owner=false)
  1043.     {
  1044.     // owner not used in base class - see oci8
  1045.         $p = array();
  1046.         $objs =& $this->MetaColumns($table);
  1047.         if ($objs) {
  1048.             foreach($objs as $v) {
  1049.                 if (!empty($v->primary_key))
  1050.                     $p[] = $v->name;
  1051.             }
  1052.         }
  1053.         if (sizeof($p)) return $p;
  1054.         if (function_exists('ADODB_VIEW_PRIMARYKEYS'))
  1055.             return ADODB_VIEW_PRIMARYKEYS($this->databaseType, $this->database, $table, $owner);
  1056.         return false;
  1057.     }
  1058.     
  1059.     /**
  1060.      * @returns assoc array where keys are tables, and values are foreign keys
  1061.      */
  1062.     function MetaForeignKeys($table, $owner=false, $upper=false)
  1063.     {
  1064.         return false;
  1065.     }
  1066.     /**
  1067.      * Choose a database to connect to. Many databases do not support this.
  1068.      *
  1069.      * @param dbName     is the name of the database to select
  1070.      * @return         true or false
  1071.      */
  1072.     function SelectDB($dbName) 
  1073.     {return false;}
  1074.     
  1075.     
  1076.     /**
  1077.     * Will select, getting rows from $offset (1-based), for $nrows. 
  1078.     * This simulates the MySQL "select * from table limit $offset,$nrows" , and
  1079.     * the PostgreSQL "select * from table limit $nrows offset $offset". Note that
  1080.     * MySQL and PostgreSQL parameter ordering is the opposite of the other.
  1081.     * eg. 
  1082.     *  SelectLimit('select * from table',3); will return rows 1 to 3 (1-based)
  1083.     *  SelectLimit('select * from table',3,2); will return rows 3 to 5 (1-based)
  1084.     *
  1085.     * Uses SELECT TOP for Microsoft databases (when $this->hasTop is set)
  1086.     * BUG: Currently SelectLimit fails with $sql with LIMIT or TOP clause already set
  1087.     *
  1088.     * @param sql
  1089.     * @param [offset]    is the row to start calculations from (1-based)
  1090.     * @param [nrows]        is the number of rows to get
  1091.     * @param [inputarr]    array of bind variables
  1092.     * @param [secs2cache]        is a private parameter only used by jlim
  1093.     * @return        the recordset ($rs->databaseType == 'array')
  1094.      */
  1095.     function &SelectLimit($sql,$nrows=-1,$offset=-1, $inputarr=false,$secs2cache=0)
  1096.     {
  1097.         if ($this->hasTop && $nrows > 0) {
  1098.         // suggested by Reinhard Balling. Access requires top after distinct 
  1099.          // Informix requires first before distinct - F Riosa
  1100.             $ismssql = (strpos($this->databaseType,'mssql') !== false);
  1101.             if ($ismssql) $isaccess = false;
  1102.             else $isaccess = (strpos($this->databaseType,'access') !== false);
  1103.             
  1104.             if ($offset <= 0) {
  1105.                 
  1106.                     // access includes ties in result
  1107.                     if ($isaccess) {
  1108.                         $sql = preg_replace(
  1109.                         '/(^\s*select\s+(distinctrow|distinct)?)/i','\\1 '.$this->hasTop.' '.$nrows.' ',$sql);
  1110.  
  1111.                         if ($secs2cache>0) {
  1112.                             $ret =& $this->CacheExecute($secs2cache, $sql,$inputarr);
  1113.                         } else {
  1114.                             $ret =& $this->Execute($sql,$inputarr);
  1115.                         }
  1116.                         return $ret; // PHP5 fix
  1117.                     } else if ($ismssql){
  1118.                         $sql = preg_replace(
  1119.                         '/(^\s*select\s+(distinctrow|distinct)?)/i','\\1 '.$this->hasTop.' '.$nrows.' ',$sql);
  1120.                     } else {
  1121.                         $sql = preg_replace(
  1122.                         '/(^\s*select\s)/i','\\1 '.$this->hasTop.' '.$nrows.' ',$sql);
  1123.                     }
  1124.             } else {
  1125.                 $nn = $nrows + $offset;
  1126.                 if ($isaccess || $ismssql) {
  1127.                     $sql = preg_replace(
  1128.                     '/(^\s*select\s+(distinctrow|distinct)?)/i','\\1 '.$this->hasTop.' '.$nn.' ',$sql);
  1129.                 } else {
  1130.                     $sql = preg_replace(
  1131.                     '/(^\s*select\s)/i','\\1 '.$this->hasTop.' '.$nn.' ',$sql);
  1132.                 }
  1133.             }
  1134.         }
  1135.         
  1136.         // if $offset>0, we want to skip rows, and $ADODB_COUNTRECS is set, we buffer  rows
  1137.         // 0 to offset-1 which will be discarded anyway. So we disable $ADODB_COUNTRECS.
  1138.         global $ADODB_COUNTRECS;
  1139.         
  1140.         $savec = $ADODB_COUNTRECS;
  1141.         $ADODB_COUNTRECS = false;
  1142.             
  1143.         if ($offset>0){
  1144.             if ($secs2cache>0) $rs = &$this->CacheExecute($secs2cache,$sql,$inputarr);
  1145.             else $rs = &$this->Execute($sql,$inputarr);
  1146.         } else {
  1147.             if ($secs2cache>0) $rs = &$this->CacheExecute($secs2cache,$sql,$inputarr);
  1148.             else $rs = &$this->Execute($sql,$inputarr);
  1149.         }
  1150.         $ADODB_COUNTRECS = $savec;
  1151.         if ($rs && !$rs->EOF) {
  1152.             $rs =& $this->_rs2rs($rs,$nrows,$offset);
  1153.         }
  1154.         //print_r($rs);
  1155.         return $rs;
  1156.     }
  1157.     
  1158.     /**
  1159.     * Create serializable recordset. Breaks rs link to connection.
  1160.     *
  1161.     * @param rs            the recordset to serialize
  1162.     */
  1163.     function &SerializableRS(&$rs)
  1164.     {
  1165.         $rs2 =& $this->_rs2rs($rs);
  1166.         $ignore = false;
  1167.         $rs2->connection =& $ignore;
  1168.         
  1169.         return $rs2;
  1170.     }
  1171.     
  1172.     /**
  1173.     * Convert database recordset to an array recordset
  1174.     * input recordset's cursor should be at beginning, and
  1175.     * old $rs will be closed.
  1176.     *
  1177.     * @param rs            the recordset to copy
  1178.     * @param [nrows]      number of rows to retrieve (optional)
  1179.     * @param [offset]     offset by number of rows (optional)
  1180.     * @return             the new recordset
  1181.     */
  1182.     function &_rs2rs(&$rs,$nrows=-1,$offset=-1,$close=true)
  1183.     {
  1184.         if (! $rs) {
  1185.             $false = false;
  1186.             return $false;
  1187.         }
  1188.         $dbtype = $rs->databaseType;
  1189.         if (!$dbtype) {
  1190.             $rs = &$rs;  // required to prevent crashing in 4.2.1, but does not happen in 4.3.1 -- why ?
  1191.             return $rs;
  1192.         }
  1193.         if (($dbtype == 'array' || $dbtype == 'csv') && $nrows == -1 && $offset == -1) {
  1194.             $rs->MoveFirst();
  1195.             $rs = &$rs; // required to prevent crashing in 4.2.1, but does not happen in 4.3.1-- why ?
  1196.             return $rs;
  1197.         }
  1198.         $flds = array();
  1199.         for ($i=0, $max=$rs->FieldCount(); $i < $max; $i++) {
  1200.             $flds[] = $rs->FetchField($i);
  1201.         }
  1202.  
  1203.         $arr =& $rs->GetArrayLimit($nrows,$offset);
  1204.         //print_r($arr);
  1205.         if ($close) $rs->Close();
  1206.         
  1207.         $arrayClass = $this->arrayClass;
  1208.         
  1209.         $rs2 =& new $arrayClass();
  1210.         $rs2->connection = &$this;
  1211.         $rs2->sql = $rs->sql;
  1212.         $rs2->dataProvider = $this->dataProvider;
  1213.         $rs2->InitArrayFields($arr,$flds);
  1214.         $rs2->fetchMode = isset($rs->adodbFetchMode) ? $rs->adodbFetchMode : $rs->fetchMode;
  1215.         return $rs2;
  1216.     }
  1217.     
  1218.     /*
  1219.     * Return all rows. Compat with PEAR DB
  1220.     */
  1221.     function &GetAll($sql, $inputarr=false)
  1222.     {
  1223.         $arr =& $this->GetArray($sql,$inputarr);
  1224.         return $arr;
  1225.     }
  1226.     
  1227.     function &GetAssoc($sql, $inputarr=false,$force_array = false, $first2cols = false)
  1228.     {
  1229.         $rs =& $this->Execute($sql, $inputarr);
  1230.         if (!$rs) {
  1231.             $false = false;
  1232.             return $false;
  1233.         }
  1234.         $arr =& $rs->GetAssoc($force_array,$first2cols);
  1235.         return $arr;
  1236.     }
  1237.     
  1238.     function &CacheGetAssoc($secs2cache, $sql=false, $inputarr=false,$force_array = false, $first2cols = false)
  1239.     {
  1240.         if (!is_numeric($secs2cache)) {
  1241.             $first2cols = $force_array;
  1242.             $force_array = $inputarr;
  1243.         }
  1244.         $rs =& $this->CacheExecute($secs2cache, $sql, $inputarr);
  1245.         if (!$rs) {
  1246.             $false = false;
  1247.             return $false;
  1248.         }
  1249.         $arr =& $rs->GetAssoc($force_array,$first2cols);
  1250.         return $arr;
  1251.     }
  1252.     
  1253.     /**
  1254.     * Return first element of first row of sql statement. Recordset is disposed
  1255.     * for you.
  1256.     *
  1257.     * @param sql            SQL statement
  1258.     * @param [inputarr]        input bind array
  1259.     */
  1260.     function GetOne($sql,$inputarr=false)
  1261.     {
  1262.     global $ADODB_COUNTRECS;
  1263.         $crecs = $ADODB_COUNTRECS;
  1264.         $ADODB_COUNTRECS = false;
  1265.         
  1266.         $ret = false;
  1267.         $rs = &$this->Execute($sql,$inputarr);
  1268.         if ($rs) {    
  1269.             if (!$rs->EOF) $ret = reset($rs->fields);
  1270.             $rs->Close();
  1271.         }
  1272.         $ADODB_COUNTRECS = $crecs;
  1273.         return $ret;
  1274.     }
  1275.     
  1276.     function CacheGetOne($secs2cache,$sql=false,$inputarr=false)
  1277.     {
  1278.         $ret = false;
  1279.         $rs = &$this->CacheExecute($secs2cache,$sql,$inputarr);
  1280.         if ($rs) {        
  1281.             if (!$rs->EOF) $ret = reset($rs->fields);
  1282.             $rs->Close();
  1283.         } 
  1284.         
  1285.         return $ret;
  1286.     }
  1287.     
  1288.     function GetCol($sql, $inputarr = false, $trim = false)
  1289.     {
  1290.           $rv = false;
  1291.           $rs = &$this->Execute($sql, $inputarr);
  1292.           if ($rs) {
  1293.             $rv = array();
  1294.                if ($trim) {
  1295.                 while (!$rs->EOF) {
  1296.                     $rv[] = trim(reset($rs->fields));
  1297.                     $rs->MoveNext();
  1298.                    }
  1299.             } else {
  1300.                 while (!$rs->EOF) {
  1301.                     $rv[] = reset($rs->fields);
  1302.                     $rs->MoveNext();
  1303.                    }
  1304.             }
  1305.                $rs->Close();
  1306.           }
  1307.           return $rv;
  1308.     }
  1309.     
  1310.     function CacheGetCol($secs, $sql = false, $inputarr = false,$trim=false)
  1311.     {
  1312.           $rv = false;
  1313.           $rs = &$this->CacheExecute($secs, $sql, $inputarr);
  1314.           if ($rs) {
  1315.             if ($trim) {
  1316.                 while (!$rs->EOF) {
  1317.                     $rv[] = trim(reset($rs->fields));
  1318.                     $rs->MoveNext();
  1319.                    }
  1320.             } else {
  1321.                 while (!$rs->EOF) {
  1322.                     $rv[] = reset($rs->fields);
  1323.                     $rs->MoveNext();
  1324.                    }
  1325.             }
  1326.                $rs->Close();
  1327.           }
  1328.           return $rv;
  1329.     }
  1330.  
  1331.     /*
  1332.         Calculate the offset of a date for a particular database and generate
  1333.             appropriate SQL. Useful for calculating future/past dates and storing
  1334.             in a database.
  1335.             
  1336.         If dayFraction=1.5 means 1.5 days from now, 1.0/24 for 1 hour.
  1337.     */
  1338.     function OffsetDate($dayFraction,$date=false)
  1339.     {        
  1340.         if (!$date) $date = $this->sysDate;
  1341.         return  '('.$date.'+'.$dayFraction.')';
  1342.     }
  1343.     
  1344.     
  1345.     /**
  1346.     *
  1347.     * @param sql            SQL statement
  1348.     * @param [inputarr]        input bind array
  1349.     */
  1350.     function &GetArray($sql,$inputarr=false)
  1351.     {
  1352.     global $ADODB_COUNTRECS;
  1353.         
  1354.         $savec = $ADODB_COUNTRECS;
  1355.         $ADODB_COUNTRECS = false;
  1356.         $rs =& $this->Execute($sql,$inputarr);
  1357.         $ADODB_COUNTRECS = $savec;
  1358.         if (!$rs) 
  1359.             if (defined('ADODB_PEAR')) return ADODB_PEAR_Error();
  1360.             else {
  1361.                 $false = false;
  1362.                 return $false;
  1363.             }
  1364.         $arr =& $rs->GetArray();
  1365.         $rs->Close();
  1366.         return $arr;
  1367.     }
  1368.     
  1369.     function &CacheGetAll($secs2cache,$sql=false,$inputarr=false)
  1370.     {
  1371.         return $this->CacheGetArray($secs2cache,$sql,$inputarr);
  1372.     }
  1373.     
  1374.     function &CacheGetArray($secs2cache,$sql=false,$inputarr=false)
  1375.     {
  1376.     global $ADODB_COUNTRECS;
  1377.         
  1378.         $savec = $ADODB_COUNTRECS;
  1379.         $ADODB_COUNTRECS = false;
  1380.         $rs =& $this->CacheExecute($secs2cache,$sql,$inputarr);
  1381.         $ADODB_COUNTRECS = $savec;
  1382.         
  1383.         if (!$rs) 
  1384.             if (defined('ADODB_PEAR')) return ADODB_PEAR_Error();
  1385.             else {
  1386.                 $false = false;
  1387.                 return $false;
  1388.             }
  1389.         $arr =& $rs->GetArray();
  1390.         $rs->Close();
  1391.         return $arr;
  1392.     }
  1393.     
  1394.     
  1395.     
  1396.     /**
  1397.     * Return one row of sql statement. Recordset is disposed for you.
  1398.     *
  1399.     * @param sql            SQL statement
  1400.     * @param [inputarr]        input bind array
  1401.     */
  1402.     function &GetRow($sql,$inputarr=false)
  1403.     {
  1404.     global $ADODB_COUNTRECS;
  1405.         $crecs = $ADODB_COUNTRECS;
  1406.         $ADODB_COUNTRECS = false;
  1407.         
  1408.         $rs =& $this->Execute($sql,$inputarr);
  1409.         
  1410.         $ADODB_COUNTRECS = $crecs;
  1411.         if ($rs) {
  1412.             if (!$rs->EOF) $arr = $rs->fields;
  1413.             else $arr = array();
  1414.             $rs->Close();
  1415.             return $arr;
  1416.         }
  1417.         
  1418.         $false = false;
  1419.         return $false;
  1420.     }
  1421.     
  1422.     function &CacheGetRow($secs2cache,$sql=false,$inputarr=false)
  1423.     {
  1424.         $rs =& $this->CacheExecute($secs2cache,$sql,$inputarr);
  1425.         if ($rs) {
  1426.             $arr = false;
  1427.             if (!$rs->EOF) $arr = $rs->fields;
  1428.             $rs->Close();
  1429.             return $arr;
  1430.         }
  1431.         $false = false;
  1432.         return $false;
  1433.     }
  1434.     
  1435.     /**
  1436.     * Insert or replace a single record. Note: this is not the same as MySQL's replace. 
  1437.     * ADOdb's Replace() uses update-insert semantics, not insert-delete-duplicates of MySQL.
  1438.     * Also note that no table locking is done currently, so it is possible that the
  1439.     * record be inserted twice by two programs...
  1440.     *
  1441.     * $this->Replace('products', array('prodname' =>"'Nails'","price" => 3.99), 'prodname');
  1442.     *
  1443.     * $table        table name
  1444.     * $fieldArray    associative array of data (you must quote strings yourself).
  1445.     * $keyCol        the primary key field name or if compound key, array of field names
  1446.     * autoQuote        set to true to use a hueristic to quote strings. Works with nulls and numbers
  1447.     *                    but does not work with dates nor SQL functions.
  1448.     * has_autoinc    the primary key is an auto-inc field, so skip in insert.
  1449.     *
  1450.     * Currently blob replace not supported
  1451.     *
  1452.     * returns 0 = fail, 1 = update, 2 = insert 
  1453.     */
  1454.     
  1455.     function Replace($table, $fieldArray, $keyCol, $autoQuote=false, $has_autoinc=false)
  1456.     {
  1457.         global $ADODB_INCLUDED_LIB;
  1458.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  1459.         
  1460.         return _adodb_replace($this, $table, $fieldArray, $keyCol, $autoQuote, $has_autoinc);
  1461.     }
  1462.     
  1463.     
  1464.     /**
  1465.     * Will select, getting rows from $offset (1-based), for $nrows. 
  1466.     * This simulates the MySQL "select * from table limit $offset,$nrows" , and
  1467.     * the PostgreSQL "select * from table limit $nrows offset $offset". Note that
  1468.     * MySQL and PostgreSQL parameter ordering is the opposite of the other.
  1469.     * eg. 
  1470.     *  CacheSelectLimit(15,'select * from table',3); will return rows 1 to 3 (1-based)
  1471.     *  CacheSelectLimit(15,'select * from table',3,2); will return rows 3 to 5 (1-based)
  1472.     *
  1473.     * BUG: Currently CacheSelectLimit fails with $sql with LIMIT or TOP clause already set
  1474.     *
  1475.     * @param [secs2cache]    seconds to cache data, set to 0 to force query. This is optional
  1476.     * @param sql
  1477.     * @param [offset]    is the row to start calculations from (1-based)
  1478.     * @param [nrows]    is the number of rows to get
  1479.     * @param [inputarr]    array of bind variables
  1480.     * @return        the recordset ($rs->databaseType == 'array')
  1481.      */
  1482.     function &CacheSelectLimit($secs2cache,$sql,$nrows=-1,$offset=-1,$inputarr=false)
  1483.     {    
  1484.         if (!is_numeric($secs2cache)) {
  1485.             if ($sql === false) $sql = -1;
  1486.             if ($offset == -1) $offset = false;
  1487.                                       // sql,    nrows, offset,inputarr
  1488.             $rs =& $this->SelectLimit($secs2cache,$sql,$nrows,$offset,$this->cacheSecs);
  1489.         } else {
  1490.             if ($sql === false) ADOConnection::outp( "Warning: \$sql missing from CacheSelectLimit()");
  1491.             $rs =& $this->SelectLimit($sql,$nrows,$offset,$inputarr,$secs2cache);
  1492.         }
  1493.         return $rs;
  1494.     }
  1495.     
  1496.     /**
  1497.     * Flush cached recordsets that match a particular $sql statement. 
  1498.     * If $sql == false, then we purge all files in the cache.
  1499.      */
  1500.     function CacheFlush($sql=false,$inputarr=false)
  1501.     {
  1502.     global $ADODB_CACHE_DIR;
  1503.     
  1504.         if (strlen($ADODB_CACHE_DIR) > 1 && !$sql) {
  1505.             if (strncmp(PHP_OS,'WIN',3) === 0) {
  1506.                 $cmd = 'del /s '.str_replace('/','\\',$ADODB_CACHE_DIR).'\adodb_*.cache';
  1507.             } else {
  1508.                 //$cmd = 'find "'.$ADODB_CACHE_DIR.'" -type f -maxdepth 1 -print0 | xargs -0 rm -f';
  1509.                 $cmd = 'rm -rf '.$ADODB_CACHE_DIR.'/[0-9a-f][0-9a-f]/'; 
  1510.                 // old version 'rm -f `find '.$ADODB_CACHE_DIR.' -name adodb_*.cache`';
  1511.             }
  1512.             if ($this->debug) {
  1513.                 ADOConnection::outp( "CacheFlush: $cmd<br><pre>\n", system($cmd),"</pre>");
  1514.             } else {
  1515.                 exec($cmd);
  1516.             }
  1517.             return;
  1518.         } 
  1519.         
  1520.         global $ADODB_INCLUDED_CSV;
  1521.         if (empty($ADODB_INCLUDED_CSV)) include_once(ADODB_DIR.'/adodb-csvlib.inc.php');
  1522.         
  1523.         $f = $this->_gencachename($sql.serialize($inputarr),false);
  1524.         adodb_write_file($f,''); // is adodb_write_file needed?
  1525.         if (!@unlink($f)) {
  1526.             if ($this->debug) ADOConnection::outp( "CacheFlush: failed for $f");
  1527.         }
  1528.     }
  1529.     
  1530.     /**
  1531.     * Private function to generate filename for caching.
  1532.     * Filename is generated based on:
  1533.     *
  1534.     *  - sql statement
  1535.     *  - database type (oci8, ibase, ifx, etc)
  1536.     *  - database name
  1537.     *  - userid
  1538.     *  - setFetchMode (adodb 4.23)
  1539.     *
  1540.     * When not in safe mode, we create 256 sub-directories in the cache directory ($ADODB_CACHE_DIR). 
  1541.     * Assuming that we can have 50,000 files per directory with good performance, 
  1542.     * then we can scale to 12.8 million unique cached recordsets. Wow!
  1543.      */
  1544.     function _gencachename($sql,$createdir)
  1545.     {
  1546.     global $ADODB_CACHE_DIR;
  1547.     static $notSafeMode;
  1548.         
  1549.         if ($this->fetchMode === false) { 
  1550.         global $ADODB_FETCH_MODE;
  1551.             $mode = $ADODB_FETCH_MODE;
  1552.         } else {
  1553.             $mode = $this->fetchMode;
  1554.         }
  1555.         $m = md5($sql.$this->databaseType.$this->database.$this->user.$mode);
  1556.         
  1557.         if (!isset($notSafeMode)) $notSafeMode = !ini_get('safe_mode');
  1558.         $dir = ($notSafeMode) ? $ADODB_CACHE_DIR.'/'.substr($m,0,2) : $ADODB_CACHE_DIR;
  1559.             
  1560.         if ($createdir && $notSafeMode && !file_exists($dir)) {
  1561.             $oldu = umask(0);
  1562.             if (!mkdir($dir,0771)) 
  1563.                 if ($this->debug) ADOConnection::outp( "Unable to mkdir $dir for $sql");
  1564.             umask($oldu);
  1565.         }
  1566.         return $dir.'/adodb_'.$m.'.cache';
  1567.     }
  1568.     
  1569.     
  1570.     /**
  1571.      * Execute SQL, caching recordsets.
  1572.      *
  1573.      * @param [secs2cache]    seconds to cache data, set to 0 to force query. 
  1574.      *                      This is an optional parameter.
  1575.      * @param sql        SQL statement to execute
  1576.      * @param [inputarr]    holds the input data  to bind to
  1577.      * @return         RecordSet or false
  1578.      */
  1579.     function &CacheExecute($secs2cache,$sql=false,$inputarr=false)
  1580.     {
  1581.         if (!is_numeric($secs2cache)) {
  1582.             $inputarr = $sql;
  1583.             $sql = $secs2cache;
  1584.             $secs2cache = $this->cacheSecs;
  1585.         }
  1586.         global $ADODB_INCLUDED_CSV;
  1587.         if (empty($ADODB_INCLUDED_CSV)) include_once(ADODB_DIR.'/adodb-csvlib.inc.php');
  1588.         
  1589.         if (is_array($sql)) $sql = $sql[0];
  1590.             
  1591.         $md5file = $this->_gencachename($sql.serialize($inputarr),true);
  1592.         $err = '';
  1593.         
  1594.         if ($secs2cache > 0){
  1595.             $rs = &csv2rs($md5file,$err,$secs2cache,$this->arrayClass);
  1596.             $this->numCacheHits += 1;
  1597.         } else {
  1598.             $err='Timeout 1';
  1599.             $rs = false;
  1600.             $this->numCacheMisses += 1;
  1601.         }
  1602.         if (!$rs) {
  1603.         // no cached rs found
  1604.             if ($this->debug) {
  1605.                 if (get_magic_quotes_runtime()) {
  1606.                     ADOConnection::outp("Please disable magic_quotes_runtime - it corrupts cache files :(");
  1607.                 }
  1608.                 if ($this->debug !== -1) ADOConnection::outp( " $md5file cache failure: $err (see sql below)");
  1609.             }
  1610.             
  1611.             $rs = &$this->Execute($sql,$inputarr);
  1612.  
  1613.             if ($rs) {
  1614.                 $eof = $rs->EOF;
  1615.                 $rs = &$this->_rs2rs($rs); // read entire recordset into memory immediately
  1616.                 $txt = _rs2serialize($rs,false,$sql); // serialize
  1617.         
  1618.                 if (!adodb_write_file($md5file,$txt,$this->debug)) {
  1619.                     if ($fn = $this->raiseErrorFn) {
  1620.                         $fn($this->databaseType,'CacheExecute',-32000,"Cache write error",$md5file,$sql,$this);
  1621.                     }
  1622.                     if ($this->debug) ADOConnection::outp( " Cache write error");
  1623.                 }
  1624.                 if ($rs->EOF && !$eof) {
  1625.                     $rs->MoveFirst();
  1626.                     //$rs = &csv2rs($md5file,$err);        
  1627.                     $rs->connection = &$this; // Pablo suggestion
  1628.                 }  
  1629.                 
  1630.             } else
  1631.                 @unlink($md5file);
  1632.         } else {
  1633.             $this->_errorMsg = '';
  1634.             $this->_errorCode = 0;
  1635.             
  1636.             if ($this->fnCacheExecute) {
  1637.                 $fn = $this->fnCacheExecute;
  1638.                 $fn($this, $secs2cache, $sql, $inputarr);
  1639.             }
  1640.         // ok, set cached object found
  1641.             $rs->connection = &$this; // Pablo suggestion
  1642.             if ($this->debug){ 
  1643.                     
  1644.                 $inBrowser = isset($_SERVER['HTTP_USER_AGENT']);
  1645.                 $ttl = $rs->timeCreated + $secs2cache - time();
  1646.                 $s = is_array($sql) ? $sql[0] : $sql;
  1647.                 if ($inBrowser) $s = '<i>'.htmlspecialchars($s).'</i>';
  1648.                 
  1649.                 ADOConnection::outp( " $md5file reloaded, ttl=$ttl [ $s ]");
  1650.             }
  1651.         }
  1652.         return $rs;
  1653.     }
  1654.     
  1655.     
  1656.     /* 
  1657.         Similar to PEAR DB's autoExecute(), except that 
  1658.         $mode can be 'INSERT' or 'UPDATE' or DB_AUTOQUERY_INSERT or DB_AUTOQUERY_UPDATE
  1659.         If $mode == 'UPDATE', then $where is compulsory as a safety measure.
  1660.         
  1661.         $forceUpdate means that even if the data has not changed, perform update.
  1662.      */
  1663.     function& AutoExecute($table, $fields_values, $mode = 'INSERT', $where = FALSE, $forceUpdate=true, $magicq=false) 
  1664.     {
  1665.         //$flds = array_keys($fields_values);
  1666.         //$fldstr = implode(', ',$flds);
  1667.         $sql = 'SELECT * FROM '.$table;  
  1668.         if ($where!==FALSE) $sql .= ' WHERE '.$where;
  1669.         else if ($mode == 'UPDATE') {
  1670.             ADOConnection::outp('AutoExecute: Illegal mode=UPDATE with empty WHERE clause');
  1671.             return false;
  1672.         }
  1673.  
  1674.         $rs =& $this->SelectLimit($sql,1);
  1675.         if (!$rs) return false; // table does not exist
  1676.         
  1677.         switch((string) $mode) {
  1678.         case 'UPDATE':
  1679.         case '2':
  1680.             $sql = $this->GetUpdateSQL($rs, $fields_values, $forceUpdate, $magicq);
  1681.             break;
  1682.         case 'INSERT':
  1683.         case '1':
  1684.             $sql = $this->GetInsertSQL($rs, $fields_values, $magicq);
  1685.             break;
  1686.         default:
  1687.             ADOConnection::outp("AutoExecute: Unknown mode=$mode");
  1688.             return false;
  1689.         }
  1690.         $ret = false;
  1691.         if ($sql) $ret = $this->Execute($sql);
  1692.         return $ret ? true : false;
  1693.     }
  1694.     
  1695.     
  1696.     /**
  1697.      * Generates an Update Query based on an existing recordset.
  1698.      * $arrFields is an associative array of fields with the value
  1699.      * that should be assigned.
  1700.      *
  1701.      * Note: This function should only be used on a recordset
  1702.      *       that is run against a single table and sql should only 
  1703.      *         be a simple select stmt with no groupby/orderby/limit
  1704.      *
  1705.      * "Jonathan Younger" <jyounger@unilab.com>
  1706.        */
  1707.     function GetUpdateSQL(&$rs, $arrFields,$forceUpdate=false,$magicq=false,$force=null)
  1708.     {
  1709.         global $ADODB_INCLUDED_LIB;
  1710.  
  1711.         //********************************************************//
  1712.         //This is here to maintain compatibility
  1713.         //with older adodb versions. Sets force type to force nulls if $forcenulls is set.
  1714.         if (!isset($force)) {
  1715.                 global $ADODB_FORCE_TYPE;
  1716.                 $force = $ADODB_FORCE_TYPE;
  1717.         }
  1718.         //********************************************************//
  1719.  
  1720.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  1721.         return _adodb_getupdatesql($this,$rs,$arrFields,$forceUpdate,$magicq,$force);
  1722.     }
  1723.  
  1724.     
  1725.     
  1726.  
  1727.     /**
  1728.      * Generates an Insert Query based on an existing recordset.
  1729.      * $arrFields is an associative array of fields with the value
  1730.      * that should be assigned.
  1731.      *
  1732.      * Note: This function should only be used on a recordset
  1733.      *       that is run against a single table.
  1734.        */
  1735.     function GetInsertSQL(&$rs, $arrFields,$magicq=false,$force=null)
  1736.     {    
  1737.         global $ADODB_INCLUDED_LIB;
  1738.         if (!isset($force)) {
  1739.             global $ADODB_FORCE_TYPE;
  1740.             $force = $ADODB_FORCE_TYPE;
  1741.             
  1742.         }
  1743.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  1744.         return _adodb_getinsertsql($this,$rs,$arrFields,$magicq,$force);
  1745.     }
  1746.     
  1747.  
  1748.     /**
  1749.     * Update a blob column, given a where clause. There are more sophisticated
  1750.     * blob handling functions that we could have implemented, but all require
  1751.     * a very complex API. Instead we have chosen something that is extremely
  1752.     * simple to understand and use. 
  1753.     *
  1754.     * Note: $blobtype supports 'BLOB' and 'CLOB', default is BLOB of course.
  1755.     *
  1756.     * Usage to update a $blobvalue which has a primary key blob_id=1 into a 
  1757.     * field blobtable.blobcolumn:
  1758.     *
  1759.     *    UpdateBlob('blobtable', 'blobcolumn', $blobvalue, 'blob_id=1');
  1760.     *
  1761.     * Insert example:
  1762.     *
  1763.     *    $conn->Execute('INSERT INTO blobtable (id, blobcol) VALUES (1, null)');
  1764.     *    $conn->UpdateBlob('blobtable','blobcol',$blob,'id=1');
  1765.     */
  1766.     
  1767.     function UpdateBlob($table,$column,$val,$where,$blobtype='BLOB')
  1768.     {
  1769.         return $this->Execute("UPDATE $table SET $column=? WHERE $where",array($val)) != false;
  1770.     }
  1771.  
  1772.     /**
  1773.     * Usage:
  1774.     *    UpdateBlob('TABLE', 'COLUMN', '/path/to/file', 'ID=1');
  1775.     *    
  1776.     *    $blobtype supports 'BLOB' and 'CLOB'
  1777.     *
  1778.     *    $conn->Execute('INSERT INTO blobtable (id, blobcol) VALUES (1, null)');
  1779.     *    $conn->UpdateBlob('blobtable','blobcol',$blobpath,'id=1');
  1780.     */
  1781.     function UpdateBlobFile($table,$column,$path,$where,$blobtype='BLOB')
  1782.     {
  1783.         $fd = fopen($path,'rb');
  1784.         if ($fd === false) return false;
  1785.         $val = fread($fd,filesize($path));
  1786.         fclose($fd);
  1787.         return $this->UpdateBlob($table,$column,$val,$where,$blobtype);
  1788.     }
  1789.     
  1790.     function BlobDecode($blob)
  1791.     {
  1792.         return $blob;
  1793.     }
  1794.     
  1795.     function BlobEncode($blob)
  1796.     {
  1797.         return $blob;
  1798.     }
  1799.     
  1800.     function SetCharSet($charset)
  1801.     {
  1802.         return false;
  1803.     }
  1804.     
  1805.     function IfNull( $field, $ifNull ) 
  1806.     {
  1807.         return " CASE WHEN $field is null THEN $ifNull ELSE $field END ";
  1808.     }
  1809.     
  1810.     function LogSQL($enable=true)
  1811.     {
  1812.         include_once(ADODB_DIR.'/adodb-perf.inc.php');
  1813.         
  1814.         if ($enable) $this->fnExecute = 'adodb_log_sql';
  1815.         else $this->fnExecute = false;
  1816.         
  1817.         $old = $this->_logsql;    
  1818.         $this->_logsql = $enable;
  1819.         if ($enable && !$old) $this->_affected = false;
  1820.         return $old;
  1821.     }
  1822.     
  1823.     function GetCharSet()
  1824.     {
  1825.         return false;
  1826.     }
  1827.     
  1828.     /**
  1829.     * Usage:
  1830.     *    UpdateClob('TABLE', 'COLUMN', $var, 'ID=1', 'CLOB');
  1831.     *
  1832.     *    $conn->Execute('INSERT INTO clobtable (id, clobcol) VALUES (1, null)');
  1833.     *    $conn->UpdateClob('clobtable','clobcol',$clob,'id=1');
  1834.     */
  1835.     function UpdateClob($table,$column,$val,$where)
  1836.     {
  1837.         return $this->UpdateBlob($table,$column,$val,$where,'CLOB');
  1838.     }
  1839.     
  1840.     
  1841.     /**
  1842.     *  Change the SQL connection locale to a specified locale.
  1843.     *  This is used to get the date formats written depending on the client locale.
  1844.     */
  1845.     function SetDateLocale($locale = 'En')
  1846.     {
  1847.         $this->locale = $locale;
  1848.         switch ($locale)
  1849.         {
  1850.             case 'En':
  1851.                 $this->fmtDate="'Y-m-d'";
  1852.                 $this->fmtTimeStamp = "'Y-m-d H:i:s'";
  1853.                 break;
  1854.                 
  1855.             case 'Us':
  1856.                 $this->fmtDate = "'m-d-Y'";
  1857.                 $this->fmtTimeStamp = "'m-d-Y H:i:s'";
  1858.                 break;
  1859.                 
  1860.             case 'Nl':
  1861.             case 'Fr':
  1862.             case 'Ro':
  1863.             case 'It':
  1864.                 $this->fmtDate="'d-m-Y'";
  1865.                 $this->fmtTimeStamp = "'d-m-Y H:i:s'";
  1866.                 break;
  1867.                 
  1868.             case 'Ge':
  1869.                 $this->fmtDate="'d.m.Y'";
  1870.                 $this->fmtTimeStamp = "'d.m.Y H:i:s'";
  1871.                 break;
  1872.                 
  1873.             default:
  1874.                 $this->fmtDate="'Y-m-d'";
  1875.                 $this->fmtTimeStamp = "'Y-m-d H:i:s'";
  1876.                 break;
  1877.         }
  1878.     }
  1879.  
  1880.     
  1881.     /**
  1882.      * Close Connection
  1883.      */
  1884.     function Close()
  1885.     {
  1886.         $rez = $this->_close();
  1887.         $this->_connectionID = false;
  1888.         return $rez;
  1889.     }
  1890.     
  1891.     /**
  1892.      * Begin a Transaction. Must be followed by CommitTrans() or RollbackTrans().
  1893.      *
  1894.      * @return true if succeeded or false if database does not support transactions
  1895.      */
  1896.     function BeginTrans() {return false;}
  1897.     
  1898.     
  1899.     /**
  1900.      * If database does not support transactions, always return true as data always commited
  1901.      *
  1902.      * @param $ok  set to false to rollback transaction, true to commit
  1903.      *
  1904.      * @return true/false.
  1905.      */
  1906.     function CommitTrans($ok=true) 
  1907.     { return true;}
  1908.     
  1909.     
  1910.     /**
  1911.      * If database does not support transactions, rollbacks always fail, so return false
  1912.      *
  1913.      * @return true/false.
  1914.      */
  1915.     function RollbackTrans() 
  1916.     { return false;}
  1917.  
  1918.  
  1919.     /**
  1920.      * return the databases that the driver can connect to. 
  1921.      * Some databases will return an empty array.
  1922.      *
  1923.      * @return an array of database names.
  1924.      */
  1925.         function MetaDatabases() 
  1926.         {
  1927.         global $ADODB_FETCH_MODE;
  1928.         
  1929.             if ($this->metaDatabasesSQL) {
  1930.                 $save = $ADODB_FETCH_MODE; 
  1931.                 $ADODB_FETCH_MODE = ADODB_FETCH_NUM; 
  1932.                 
  1933.                 if ($this->fetchMode !== false) $savem = $this->SetFetchMode(false);
  1934.                 
  1935.                 $arr = $this->GetCol($this->metaDatabasesSQL);
  1936.                 if (isset($savem)) $this->SetFetchMode($savem);
  1937.                 $ADODB_FETCH_MODE = $save; 
  1938.             
  1939.                 return $arr;
  1940.             }
  1941.             
  1942.             return false;
  1943.         }
  1944.         
  1945.     /**
  1946.      * @param ttype can either be 'VIEW' or 'TABLE' or false. 
  1947.      *         If false, both views and tables are returned.
  1948.      *        "VIEW" returns only views
  1949.      *        "TABLE" returns only tables
  1950.      * @param showSchema returns the schema/user with the table name, eg. USER.TABLE
  1951.      * @param mask  is the input mask - only supported by oci8 and postgresql
  1952.      *
  1953.      * @return  array of tables for current database.
  1954.      */ 
  1955.     function &MetaTables($ttype=false,$showSchema=false,$mask=false) 
  1956.     {
  1957.     global $ADODB_FETCH_MODE;
  1958.     
  1959.         
  1960.         $false = false;
  1961.         if ($mask) {
  1962.             return $false;
  1963.         }
  1964.         if ($this->metaTablesSQL) {
  1965.             $save = $ADODB_FETCH_MODE; 
  1966.             $ADODB_FETCH_MODE = ADODB_FETCH_NUM; 
  1967.             
  1968.             if ($this->fetchMode !== false) $savem = $this->SetFetchMode(false);
  1969.             
  1970.             $rs = $this->Execute($this->metaTablesSQL);
  1971.             if (isset($savem)) $this->SetFetchMode($savem);
  1972.             $ADODB_FETCH_MODE = $save; 
  1973.             
  1974.             if ($rs === false) return $false;
  1975.             $arr =& $rs->GetArray();
  1976.             $arr2 = array();
  1977.             
  1978.             if ($hast = ($ttype && isset($arr[0][1]))) { 
  1979.                 $showt = strncmp($ttype,'T',1);
  1980.             }
  1981.             
  1982.             for ($i=0; $i < sizeof($arr); $i++) {
  1983.                 if ($hast) {
  1984.                     if ($showt == 0) {
  1985.                         if (strncmp($arr[$i][1],'T',1) == 0) $arr2[] = trim($arr[$i][0]);
  1986.                     } else {
  1987.                         if (strncmp($arr[$i][1],'V',1) == 0) $arr2[] = trim($arr[$i][0]);
  1988.                     }
  1989.                 } else
  1990.                     $arr2[] = trim($arr[$i][0]);
  1991.             }
  1992.             $rs->Close();
  1993.             return $arr2;
  1994.         }
  1995.         return $false;
  1996.     }
  1997.     
  1998.     
  1999.     function _findschema(&$table,&$schema)
  2000.     {
  2001.         if (!$schema && ($at = strpos($table,'.')) !== false) {
  2002.             $schema = substr($table,0,$at);
  2003.             $table = substr($table,$at+1);
  2004.         }
  2005.     }
  2006.     
  2007.     /**
  2008.      * List columns in a database as an array of ADOFieldObjects. 
  2009.      * See top of file for definition of object.
  2010.      *
  2011.      * @param table    table name to query
  2012.      * @param upper    uppercase table name (required by some databases)
  2013.      * @schema is optional database schema to use - not supported by all databases.
  2014.      *
  2015.      * @return  array of ADOFieldObjects for current table.
  2016.      */
  2017.     function &MetaColumns($table,$upper=true) 
  2018.     {
  2019.     global $ADODB_FETCH_MODE;
  2020.         
  2021.         $false = false;
  2022.         
  2023.         if (!empty($this->metaColumnsSQL)) {
  2024.         
  2025.             $schema = false;
  2026.             $this->_findschema($table,$schema);
  2027.         
  2028.             $save = $ADODB_FETCH_MODE;
  2029.             $ADODB_FETCH_MODE = ADODB_FETCH_NUM;
  2030.             if ($this->fetchMode !== false) $savem = $this->SetFetchMode(false);
  2031.             $rs = $this->Execute(sprintf($this->metaColumnsSQL,($upper)?strtoupper($table):$table));
  2032.             if (isset($savem)) $this->SetFetchMode($savem);
  2033.             $ADODB_FETCH_MODE = $save;
  2034.             if ($rs === false || $rs->EOF) return $false;
  2035.  
  2036.             $retarr = array();
  2037.             while (!$rs->EOF) { //print_r($rs->fields);
  2038.                 $fld =& new ADOFieldObject();
  2039.                 $fld->name = $rs->fields[0];
  2040.                 $fld->type = $rs->fields[1];
  2041.                 if (isset($rs->fields[3]) && $rs->fields[3]) {
  2042.                     if ($rs->fields[3]>0) $fld->max_length = $rs->fields[3];
  2043.                     $fld->scale = $rs->fields[4];
  2044.                     if ($fld->scale>0) $fld->max_length += 1;
  2045.                 } else
  2046.                     $fld->max_length = $rs->fields[2];
  2047.                     
  2048.                 if ($ADODB_FETCH_MODE == ADODB_FETCH_NUM) $retarr[] = $fld;    
  2049.                 else $retarr[strtoupper($fld->name)] = $fld;
  2050.                 $rs->MoveNext();
  2051.             }
  2052.             $rs->Close();
  2053.             return $retarr;    
  2054.         }
  2055.         return $false;
  2056.     }
  2057.     
  2058.     /**
  2059.       * List indexes on a table as an array.
  2060.       * @param table  table name to query
  2061.       * @param primary true to only show primary keys. Not actually used for most databases
  2062.       *
  2063.       * @return array of indexes on current table. Each element represents an index, and is itself an associative array.
  2064.       
  2065.          Array (
  2066.             [name_of_index] => Array
  2067.               (
  2068.               [unique] => true or false
  2069.               [columns] => Array
  2070.               (
  2071.                   [0] => firstname
  2072.                   [1] => lastname
  2073.               )
  2074.         )        
  2075.       */
  2076.      function &MetaIndexes($table, $primary = false, $owner = false)
  2077.      {
  2078.              $false = false;
  2079.             return false;
  2080.      }
  2081.  
  2082.     /**
  2083.      * List columns names in a table as an array. 
  2084.      * @param table    table name to query
  2085.      *
  2086.      * @return  array of column names for current table.
  2087.      */ 
  2088.     function &MetaColumnNames($table, $numIndexes=false) 
  2089.     {
  2090.         $objarr =& $this->MetaColumns($table);
  2091.         if (!is_array($objarr)) {
  2092.             $false = false;
  2093.             return $false;
  2094.         }
  2095.         $arr = array();
  2096.         if ($numIndexes) {
  2097.             $i = 0;
  2098.             foreach($objarr as $v) $arr[$i++] = $v->name;
  2099.         } else
  2100.             foreach($objarr as $v) $arr[strtoupper($v->name)] = $v->name;
  2101.         
  2102.         return $arr;
  2103.     }
  2104.             
  2105.     /**
  2106.      * Different SQL databases used different methods to combine strings together.
  2107.      * This function provides a wrapper. 
  2108.      * 
  2109.      * param s    variable number of string parameters
  2110.      *
  2111.      * Usage: $db->Concat($str1,$str2);
  2112.      * 
  2113.      * @return concatenated string
  2114.      */      
  2115.     function Concat()
  2116.     {    
  2117.         $arr = func_get_args();
  2118.         return implode($this->concat_operator, $arr);
  2119.     }
  2120.     
  2121.     
  2122.     /**
  2123.      * Converts a date "d" to a string that the database can understand.
  2124.      *
  2125.      * @param d    a date in Unix date time format.
  2126.      *
  2127.      * @return  date string in database date format
  2128.      */
  2129.     function DBDate($d)
  2130.     {
  2131.         if (empty($d) && $d !== 0) return 'null';
  2132.  
  2133.         if (is_string($d) && !is_numeric($d)) {
  2134.             if ($d === 'null' || strncmp($d,"'",1) === 0) return $d;
  2135.             if ($this->isoDates) return "'$d'";
  2136.             $d = ADOConnection::UnixDate($d);
  2137.         }
  2138.  
  2139.         return adodb_date($this->fmtDate,$d);
  2140.     }
  2141.     
  2142.     
  2143.     /**
  2144.      * Converts a timestamp "ts" to a string that the database can understand.
  2145.      *
  2146.      * @param ts    a timestamp in Unix date time format.
  2147.      *
  2148.      * @return  timestamp string in database timestamp format
  2149.      */
  2150.     function DBTimeStamp($ts)
  2151.     {
  2152.         if (empty($ts) && $ts !== 0) return 'null';
  2153.  
  2154.         # strlen(14) allows YYYYMMDDHHMMSS format
  2155.         if (!is_string($ts) || (is_numeric($ts) && strlen($ts)<14)) 
  2156.             return adodb_date($this->fmtTimeStamp,$ts);
  2157.         
  2158.         if ($ts === 'null') return $ts;
  2159.         if ($this->isoDates && strlen($ts) !== 14) return "'$ts'";
  2160.         
  2161.         $ts = ADOConnection::UnixTimeStamp($ts);
  2162.         return adodb_date($this->fmtTimeStamp,$ts);
  2163.     }
  2164.     
  2165.     /**
  2166.      * Also in ADORecordSet.
  2167.      * @param $v is a date string in YYYY-MM-DD format
  2168.      *
  2169.      * @return date in unix timestamp format, or 0 if before TIMESTAMP_FIRST_YEAR, or false if invalid date format
  2170.      */
  2171.     function UnixDate($v)
  2172.     {
  2173.         if (is_object($v)) {
  2174.         // odbtp support
  2175.         //( [year] => 2004 [month] => 9 [day] => 4 [hour] => 12 [minute] => 44 [second] => 8 [fraction] => 0 )
  2176.             return adodb_mktime($v->hour,$v->minute,$v->second,$v->month,$v->day, $v->year);
  2177.         }
  2178.     
  2179.         if (is_numeric($v) && strlen($v) !== 8) return $v;
  2180.         if (!preg_match( "|^([0-9]{4})[-/\.]?([0-9]{1,2})[-/\.]?([0-9]{1,2})|", 
  2181.             ($v), $rr)) return false;
  2182.  
  2183.         if ($rr[1] <= TIMESTAMP_FIRST_YEAR) return 0;
  2184.         // h-m-s-MM-DD-YY
  2185.         return @adodb_mktime(0,0,0,$rr[2],$rr[3],$rr[1]);
  2186.     }
  2187.     
  2188.  
  2189.     /**
  2190.      * Also in ADORecordSet.
  2191.      * @param $v is a timestamp string in YYYY-MM-DD HH-NN-SS format
  2192.      *
  2193.      * @return date in unix timestamp format, or 0 if before TIMESTAMP_FIRST_YEAR, or false if invalid date format
  2194.      */
  2195.     function UnixTimeStamp($v)
  2196.     {
  2197.         if (is_object($v)) {
  2198.         // odbtp support
  2199.         //( [year] => 2004 [month] => 9 [day] => 4 [hour] => 12 [minute] => 44 [second] => 8 [fraction] => 0 )
  2200.             return adodb_mktime($v->hour,$v->minute,$v->second,$v->month,$v->day, $v->year);
  2201.         }
  2202.         
  2203.         if (!preg_match( 
  2204.             "|^([0-9]{4})[-/\.]?([0-9]{1,2})[-/\.]?([0-9]{1,2})[ ,-]*(([0-9]{1,2}):?([0-9]{1,2}):?([0-9\.]{1,4}))?|", 
  2205.             ($v), $rr)) return false;
  2206.             
  2207.         if ($rr[1] <= TIMESTAMP_FIRST_YEAR && $rr[2]<= 1) return 0;
  2208.     
  2209.         // h-m-s-MM-DD-YY
  2210.         if (!isset($rr[5])) return  adodb_mktime(0,0,0,$rr[2],$rr[3],$rr[1]);
  2211.         return  @adodb_mktime($rr[5],$rr[6],$rr[7],$rr[2],$rr[3],$rr[1]);
  2212.     }
  2213.     
  2214.     /**
  2215.      * Also in ADORecordSet.
  2216.      *
  2217.      * Format database date based on user defined format.
  2218.      *
  2219.      * @param v      is the character date in YYYY-MM-DD format, returned by database
  2220.      * @param fmt     is the format to apply to it, using date()
  2221.      *
  2222.      * @return a date formated as user desires
  2223.      */
  2224.      
  2225.     function UserDate($v,$fmt='Y-m-d',$gmt=false)
  2226.     {
  2227.         $tt = $this->UnixDate($v);
  2228.  
  2229.         // $tt == -1 if pre TIMESTAMP_FIRST_YEAR
  2230.         if (($tt === false || $tt == -1) && $v != false) return $v;
  2231.         else if ($tt == 0) return $this->emptyDate;
  2232.         else if ($tt == -1) { // pre-TIMESTAMP_FIRST_YEAR
  2233.         }
  2234.         
  2235.         return ($gmt) ? adodb_gmdate($fmt,$tt) : adodb_date($fmt,$tt);
  2236.     
  2237.     }
  2238.     
  2239.         /**
  2240.      *
  2241.      * @param v      is the character timestamp in YYYY-MM-DD hh:mm:ss format
  2242.      * @param fmt     is the format to apply to it, using date()
  2243.      *
  2244.      * @return a timestamp formated as user desires
  2245.      */
  2246.     function UserTimeStamp($v,$fmt='Y-m-d H:i:s',$gmt=false)
  2247.     {
  2248.         if (!isset($v)) return $this->emptyTimeStamp;
  2249.         # strlen(14) allows YYYYMMDDHHMMSS format
  2250.         if (is_numeric($v) && strlen($v)<14) return ($gmt) ? adodb_gmdate($fmt,$v) : adodb_date($fmt,$v);
  2251.         $tt = $this->UnixTimeStamp($v);
  2252.         // $tt == -1 if pre TIMESTAMP_FIRST_YEAR
  2253.         if (($tt === false || $tt == -1) && $v != false) return $v;
  2254.         if ($tt == 0) return $this->emptyTimeStamp;
  2255.         return ($gmt) ? adodb_gmdate($fmt,$tt) : adodb_date($fmt,$tt);
  2256.     }
  2257.     
  2258.     function escape($s,$magic_quotes=false)
  2259.     {
  2260.         return $this->addq($s,$magic_quotes);
  2261.     }
  2262.     
  2263.     /**
  2264.     * Quotes a string, without prefixing nor appending quotes. 
  2265.     */
  2266.     function addq($s,$magic_quotes=false)
  2267.     {
  2268.         if (!$magic_quotes) {
  2269.         
  2270.             if ($this->replaceQuote[0] == '\\'){
  2271.                 // only since php 4.0.5
  2272.                 $s = adodb_str_replace(array('\\',"\0"),array('\\\\',"\\\0"),$s);
  2273.                 //$s = str_replace("\0","\\\0", str_replace('\\','\\\\',$s));
  2274.             }
  2275.             return  str_replace("'",$this->replaceQuote,$s);
  2276.         }
  2277.         
  2278.         // undo magic quotes for "
  2279.         $s = str_replace('\\"','"',$s);
  2280.         
  2281.         if ($this->replaceQuote == "\\'")  // ' already quoted, no need to change anything
  2282.             return $s;
  2283.         else {// change \' to '' for sybase/mssql
  2284.             $s = str_replace('\\\\','\\',$s);
  2285.             return str_replace("\\'",$this->replaceQuote,$s);
  2286.         }
  2287.     }
  2288.     
  2289.     /**
  2290.      * Correctly quotes a string so that all strings are escaped. We prefix and append
  2291.      * to the string single-quotes.
  2292.      * An example is  $db->qstr("Don't bother",magic_quotes_runtime());
  2293.      * 
  2294.      * @param s            the string to quote
  2295.      * @param [magic_quotes]    if $s is GET/POST var, set to get_magic_quotes_gpc().
  2296.      *                This undoes the stupidity of magic quotes for GPC.
  2297.      *
  2298.      * @return  quoted string to be sent back to database
  2299.      */
  2300.     function qstr($s,$magic_quotes=false)
  2301.     {    
  2302.         if (!$magic_quotes) {
  2303.         
  2304.             if ($this->replaceQuote[0] == '\\'){
  2305.                 // only since php 4.0.5
  2306.                 $s = adodb_str_replace(array('\\',"\0"),array('\\\\',"\\\0"),$s);
  2307.                 //$s = str_replace("\0","\\\0", str_replace('\\','\\\\',$s));
  2308.             }
  2309.             return  "'".str_replace("'",$this->replaceQuote,$s)."'";
  2310.         }
  2311.         
  2312.         // undo magic quotes for "
  2313.         $s = str_replace('\\"','"',$s);
  2314.         
  2315.         if ($this->replaceQuote == "\\'")  // ' already quoted, no need to change anything
  2316.             return "'$s'";
  2317.         else {// change \' to '' for sybase/mssql
  2318.             $s = str_replace('\\\\','\\',$s);
  2319.             return "'".str_replace("\\'",$this->replaceQuote,$s)."'";
  2320.         }
  2321.     }
  2322.     
  2323.     
  2324.     /**
  2325.     * Will select the supplied $page number from a recordset, given that it is paginated in pages of 
  2326.     * $nrows rows per page. It also saves two boolean values saying if the given page is the first 
  2327.     * and/or last one of the recordset. Added by Ivßn Oliva to provide recordset pagination.
  2328.     *
  2329.     * See readme.htm#ex8 for an example of usage.
  2330.     *
  2331.     * @param sql
  2332.     * @param nrows        is the number of rows per page to get
  2333.     * @param page        is the page number to get (1-based)
  2334.     * @param [inputarr]    array of bind variables
  2335.     * @param [secs2cache]        is a private parameter only used by jlim
  2336.     * @return        the recordset ($rs->databaseType == 'array')
  2337.     *
  2338.     * NOTE: phpLens uses a different algorithm and does not use PageExecute().
  2339.     *
  2340.     */
  2341.     function &PageExecute($sql, $nrows, $page, $inputarr=false, $secs2cache=0) 
  2342.     {
  2343.         global $ADODB_INCLUDED_LIB;
  2344.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  2345.         if ($this->pageExecuteCountRows) $rs =& _adodb_pageexecute_all_rows($this, $sql, $nrows, $page, $inputarr, $secs2cache);
  2346.         else $rs =& _adodb_pageexecute_no_last_page($this, $sql, $nrows, $page, $inputarr, $secs2cache);
  2347.         return $rs;
  2348.     }
  2349.     
  2350.         
  2351.     /**
  2352.     * Will select the supplied $page number from a recordset, given that it is paginated in pages of 
  2353.     * $nrows rows per page. It also saves two boolean values saying if the given page is the first 
  2354.     * and/or last one of the recordset. Added by Ivßn Oliva to provide recordset pagination.
  2355.     *
  2356.     * @param secs2cache    seconds to cache data, set to 0 to force query
  2357.     * @param sql
  2358.     * @param nrows        is the number of rows per page to get
  2359.     * @param page        is the page number to get (1-based)
  2360.     * @param [inputarr]    array of bind variables
  2361.     * @return        the recordset ($rs->databaseType == 'array')
  2362.     */
  2363.     function &CachePageExecute($secs2cache, $sql, $nrows, $page,$inputarr=false) 
  2364.     {
  2365.         /*switch($this->dataProvider) {
  2366.         case 'postgres':
  2367.         case 'mysql': 
  2368.             break;
  2369.         default: $secs2cache = 0; break;
  2370.         }*/
  2371.         $rs =& $this->PageExecute($sql,$nrows,$page,$inputarr,$secs2cache);
  2372.         return $rs;
  2373.     }
  2374.  
  2375. } // end class ADOConnection
  2376.     
  2377.     
  2378.     
  2379.     //==============================================================================================    
  2380.     // CLASS ADOFetchObj
  2381.     //==============================================================================================    
  2382.         
  2383.     /**
  2384.     * Internal placeholder for record objects. Used by ADORecordSet->FetchObj().
  2385.     */
  2386.     class ADOFetchObj {
  2387.     };
  2388.     
  2389.     //==============================================================================================    
  2390.     // CLASS ADORecordSet_empty
  2391.     //==============================================================================================    
  2392.     
  2393.     /**
  2394.     * Lightweight recordset when there are no records to be returned
  2395.     */
  2396.     class ADORecordSet_empty
  2397.     {
  2398.         var $dataProvider = 'empty';
  2399.         var $databaseType = false;
  2400.         var $EOF = true;
  2401.         var $_numOfRows = 0;
  2402.         var $fields = false;
  2403.         var $connection = false;
  2404.         function RowCount() {return 0;}
  2405.         function RecordCount() {return 0;}
  2406.         function PO_RecordCount(){return 0;}
  2407.         function Close(){return true;}
  2408.         function FetchRow() {return false;}
  2409.         function FieldCount(){ return 0;}
  2410.         function Init() {}
  2411.     }
  2412.     
  2413.     //==============================================================================================    
  2414.     // DATE AND TIME FUNCTIONS
  2415.     //==============================================================================================    
  2416.     include_once(ADODB_DIR.'/adodb-time.inc.php');
  2417.     
  2418.     //==============================================================================================    
  2419.     // CLASS ADORecordSet
  2420.     //==============================================================================================    
  2421.  
  2422.     if (PHP_VERSION < 5) include_once(ADODB_DIR.'/adodb-php4.inc.php');
  2423.     else include_once(ADODB_DIR.'/adodb-iterator.inc.php');
  2424.    /**
  2425.      * RecordSet class that represents the dataset returned by the database.
  2426.      * To keep memory overhead low, this class holds only the current row in memory.
  2427.      * No prefetching of data is done, so the RecordCount() can return -1 ( which
  2428.      * means recordcount not known).
  2429.      */
  2430.     class ADORecordSet extends ADODB_BASE_RS {
  2431.     /*
  2432.      * public variables    
  2433.      */
  2434.     var $dataProvider = "native";
  2435.     var $fields = false;     /// holds the current row data
  2436.     var $blobSize = 100;     /// any varchar/char field this size or greater is treated as a blob
  2437.                             /// in other words, we use a text area for editing.
  2438.     var $canSeek = false;     /// indicates that seek is supported
  2439.     var $sql;                 /// sql text
  2440.     var $EOF = false;        /// Indicates that the current record position is after the last record in a Recordset object. 
  2441.     
  2442.     var $emptyTimeStamp = ' '; /// what to display when $time==0
  2443.     var $emptyDate = ' '; /// what to display when $time==0
  2444.     var $debug = false;
  2445.     var $timeCreated=0;     /// datetime in Unix format rs created -- for cached recordsets
  2446.  
  2447.     var $bind = false;         /// used by Fields() to hold array - should be private?
  2448.     var $fetchMode;            /// default fetch mode
  2449.     var $connection = false; /// the parent connection
  2450.     /*
  2451.      *    private variables    
  2452.      */
  2453.     var $_numOfRows = -1;    /** number of rows, or -1 */
  2454.     var $_numOfFields = -1;    /** number of fields in recordset */
  2455.     var $_queryID = -1;        /** This variable keeps the result link identifier.    */
  2456.     var $_currentRow = -1;    /** This variable keeps the current row in the Recordset.    */
  2457.     var $_closed = false;     /** has recordset been closed */
  2458.     var $_inited = false;     /** Init() should only be called once */
  2459.     var $_obj;                 /** Used by FetchObj */
  2460.     var $_names;            /** Used by FetchObj */
  2461.     
  2462.     var $_currentPage = -1;    /** Added by Ivßn Oliva to implement recordset pagination */
  2463.     var $_atFirstPage = false;    /** Added by Ivßn Oliva to implement recordset pagination */
  2464.     var $_atLastPage = false;    /** Added by Ivßn Oliva to implement recordset pagination */
  2465.     var $_lastPageNo = -1; 
  2466.     var $_maxRecordCount = 0;
  2467.     var $datetime = false;
  2468.     
  2469.     /**
  2470.      * Constructor
  2471.      *
  2472.      * @param queryID      this is the queryID returned by ADOConnection->_query()
  2473.      *
  2474.      */
  2475.     function ADORecordSet($queryID) 
  2476.     {
  2477.         $this->_queryID = $queryID;
  2478.     }
  2479.     
  2480.     
  2481.     
  2482.     function Init()
  2483.     {
  2484.         if ($this->_inited) return;
  2485.         $this->_inited = true;
  2486.         if ($this->_queryID) @$this->_initrs();
  2487.         else {
  2488.             $this->_numOfRows = 0;
  2489.             $this->_numOfFields = 0;
  2490.         }
  2491.         if ($this->_numOfRows != 0 && $this->_numOfFields && $this->_currentRow == -1) {
  2492.             
  2493.             $this->_currentRow = 0;
  2494.             if ($this->EOF = ($this->_fetch() === false)) {
  2495.                 $this->_numOfRows = 0; // _numOfRows could be -1
  2496.             }
  2497.         } else {
  2498.             $this->EOF = true;
  2499.         }
  2500.     }
  2501.     
  2502.     
  2503.     /**
  2504.      * Generate a SELECT tag string from a recordset, and return the string.
  2505.      * If the recordset has 2 cols, we treat the 1st col as the containing 
  2506.      * the text to display to the user, and 2nd col as the return value. Default
  2507.      * strings are compared with the FIRST column.
  2508.      *
  2509.      * @param name          name of SELECT tag
  2510.      * @param [defstr]        the value to hilite. Use an array for multiple hilites for listbox.
  2511.      * @param [blank1stItem]    true to leave the 1st item in list empty
  2512.      * @param [multiple]        true for listbox, false for popup
  2513.      * @param [size]        #rows to show for listbox. not used by popup
  2514.      * @param [selectAttr]        additional attributes to defined for SELECT tag.
  2515.      *                useful for holding javascript onChange='...' handlers.
  2516.      & @param [compareFields0]    when we have 2 cols in recordset, we compare the defstr with 
  2517.      *                column 0 (1st col) if this is true. This is not documented.
  2518.      *
  2519.      * @return HTML
  2520.      *
  2521.      * changes by glen.davies@cce.ac.nz to support multiple hilited items
  2522.      */
  2523.     function GetMenu($name,$defstr='',$blank1stItem=true,$multiple=false,
  2524.             $size=0, $selectAttr='',$compareFields0=true)
  2525.     {
  2526.         global $ADODB_INCLUDED_LIB;
  2527.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  2528.         return _adodb_getmenu($this, $name,$defstr,$blank1stItem,$multiple,
  2529.             $size, $selectAttr,$compareFields0);
  2530.     }
  2531.     
  2532.  
  2533.     
  2534.     /**
  2535.      * Generate a SELECT tag string from a recordset, and return the string.
  2536.      * If the recordset has 2 cols, we treat the 1st col as the containing 
  2537.      * the text to display to the user, and 2nd col as the return value. Default
  2538.      * strings are compared with the SECOND column.
  2539.      *
  2540.      */
  2541.     function GetMenu2($name,$defstr='',$blank1stItem=true,$multiple=false,$size=0, $selectAttr='')    
  2542.     {
  2543.         return $this->GetMenu($name,$defstr,$blank1stItem,$multiple,
  2544.             $size, $selectAttr,false);
  2545.     }
  2546.     
  2547.     /*
  2548.         Grouped Menu
  2549.     */
  2550.     function GetMenu3($name,$defstr='',$blank1stItem=true,$multiple=false,
  2551.             $size=0, $selectAttr='')
  2552.     {
  2553.         global $ADODB_INCLUDED_LIB;
  2554.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  2555.         return _adodb_getmenu_gp($this, $name,$defstr,$blank1stItem,$multiple,
  2556.             $size, $selectAttr,false);
  2557.     }
  2558.  
  2559.     /**
  2560.      * return recordset as a 2-dimensional array.
  2561.      *
  2562.      * @param [nRows]  is the number of rows to return. -1 means every row.
  2563.      *
  2564.      * @return an array indexed by the rows (0-based) from the recordset
  2565.      */
  2566.     function &GetArray($nRows = -1) 
  2567.     {
  2568.     global $ADODB_EXTENSION; if ($ADODB_EXTENSION) return adodb_getall($this,$nRows);
  2569.         
  2570.         $results = array();
  2571.         $cnt = 0;
  2572.         while (!$this->EOF && $nRows != $cnt) {
  2573.             $results[] = $this->fields;
  2574.             $this->MoveNext();
  2575.             $cnt++;
  2576.         }
  2577.         return $results;
  2578.     }
  2579.     
  2580.     function &GetAll($nRows = -1)
  2581.     {
  2582.         $arr =& $this->GetArray($nRows);
  2583.         return $arr;
  2584.     }
  2585.     
  2586.     /*
  2587.     * Some databases allow multiple recordsets to be returned. This function
  2588.     * will return true if there is a next recordset, or false if no more.
  2589.     */
  2590.     function NextRecordSet()
  2591.     {
  2592.         return false;
  2593.     }
  2594.     
  2595.     /**
  2596.      * return recordset as a 2-dimensional array. 
  2597.      * Helper function for ADOConnection->SelectLimit()
  2598.      *
  2599.      * @param offset    is the row to start calculations from (1-based)
  2600.      * @param [nrows]    is the number of rows to return
  2601.      *
  2602.      * @return an array indexed by the rows (0-based) from the recordset
  2603.      */
  2604.     function &GetArrayLimit($nrows,$offset=-1) 
  2605.     {    
  2606.         if ($offset <= 0) {
  2607.             $arr =& $this->GetArray($nrows);
  2608.             return $arr;
  2609.         } 
  2610.         
  2611.         $this->Move($offset);
  2612.         
  2613.         $results = array();
  2614.         $cnt = 0;
  2615.         while (!$this->EOF && $nrows != $cnt) {
  2616.             $results[$cnt++] = $this->fields;
  2617.             $this->MoveNext();
  2618.         }
  2619.         
  2620.         return $results;
  2621.     }
  2622.     
  2623.     
  2624.     /**
  2625.      * Synonym for GetArray() for compatibility with ADO.
  2626.      *
  2627.      * @param [nRows]  is the number of rows to return. -1 means every row.
  2628.      *
  2629.      * @return an array indexed by the rows (0-based) from the recordset
  2630.      */
  2631.     function &GetRows($nRows = -1) 
  2632.     {
  2633.         $arr =& $this->GetArray($nRows);
  2634.         return $arr;
  2635.     }
  2636.     
  2637.     /**
  2638.      * return whole recordset as a 2-dimensional associative array if there are more than 2 columns. 
  2639.      * The first column is treated as the key and is not included in the array. 
  2640.      * If there is only 2 columns, it will return a 1 dimensional array of key-value pairs unless
  2641.      * $force_array == true.
  2642.      *
  2643.      * @param [force_array] has only meaning if we have 2 data columns. If false, a 1 dimensional
  2644.      *     array is returned, otherwise a 2 dimensional array is returned. If this sounds confusing,
  2645.      *     read the source.
  2646.      *
  2647.      * @param [first2cols] means if there are more than 2 cols, ignore the remaining cols and 
  2648.      * instead of returning array[col0] => array(remaining cols), return array[col0] => col1
  2649.      *
  2650.      * @return an associative array indexed by the first column of the array, 
  2651.      *     or false if the  data has less than 2 cols.
  2652.      */
  2653.     function &GetAssoc($force_array = false, $first2cols = false) 
  2654.     {
  2655.     global $ADODB_EXTENSION;
  2656.     
  2657.         $cols = $this->_numOfFields;
  2658.         if ($cols < 2) {
  2659.             $false = false;
  2660.             return $false;
  2661.         }
  2662.         $numIndex = isset($this->fields[0]);
  2663.         $results = array();
  2664.         
  2665.         if (!$first2cols && ($cols > 2 || $force_array)) {
  2666.             if ($ADODB_EXTENSION) {
  2667.                 if ($numIndex) {
  2668.                     while (!$this->EOF) {
  2669.                         $results[trim($this->fields[0])] = array_slice($this->fields, 1);
  2670.                         adodb_movenext($this);
  2671.                     }
  2672.                 } else {
  2673.                     while (!$this->EOF) {
  2674.                         $results[trim(reset($this->fields))] = array_slice($this->fields, 1);
  2675.                         adodb_movenext($this);
  2676.                     }
  2677.                 }
  2678.             } else {
  2679.                 if ($numIndex) {
  2680.                     while (!$this->EOF) {
  2681.                         $results[trim($this->fields[0])] = array_slice($this->fields, 1);
  2682.                         $this->MoveNext();
  2683.                     }
  2684.                 } else {
  2685.                     while (!$this->EOF) {
  2686.                         $results[trim(reset($this->fields))] = array_slice($this->fields, 1);
  2687.                         $this->MoveNext();
  2688.                     }
  2689.                 }
  2690.             }
  2691.         } else {
  2692.             if ($ADODB_EXTENSION) {
  2693.                 // return scalar values
  2694.                 if ($numIndex) {
  2695.                     while (!$this->EOF) {
  2696.                     // some bug in mssql PHP 4.02 -- doesn't handle references properly so we FORCE creating a new string
  2697.                         $results[trim(($this->fields[0]))] = $this->fields[1];
  2698.                         adodb_movenext($this);
  2699.                     }
  2700.                 } else {
  2701.                     while (!$this->EOF) {
  2702.                     // some bug in mssql PHP 4.02 -- doesn't handle references properly so we FORCE creating a new string
  2703.                         $v1 = trim(reset($this->fields));
  2704.                         $v2 = ''.next($this->fields); 
  2705.                         $results[$v1] = $v2;
  2706.                         adodb_movenext($this);
  2707.                     }
  2708.                 }
  2709.             } else {
  2710.                 if ($numIndex) {
  2711.                     while (!$this->EOF) {
  2712.                     // some bug in mssql PHP 4.02 -- doesn't handle references properly so we FORCE creating a new string
  2713.                         $results[trim(($this->fields[0]))] = $this->fields[1];
  2714.                         $this->MoveNext();
  2715.                     }
  2716.                 } else {
  2717.                     while (!$this->EOF) {
  2718.                     // some bug in mssql PHP 4.02 -- doesn't handle references properly so we FORCE creating a new string
  2719.                         $v1 = trim(reset($this->fields));
  2720.                         $v2 = ''.next($this->fields); 
  2721.                         $results[$v1] = $v2;
  2722.                         $this->MoveNext();
  2723.                     }
  2724.                 }
  2725.             }
  2726.         }
  2727.         return $results; 
  2728.     }
  2729.     
  2730.     
  2731.     /**
  2732.      *
  2733.      * @param v      is the character timestamp in YYYY-MM-DD hh:mm:ss format
  2734.      * @param fmt     is the format to apply to it, using date()
  2735.      *
  2736.      * @return a timestamp formated as user desires
  2737.      */
  2738.     function UserTimeStamp($v,$fmt='Y-m-d H:i:s')
  2739.     {
  2740.         if (is_numeric($v) && strlen($v)<14) return adodb_date($fmt,$v);
  2741.         $tt = $this->UnixTimeStamp($v);
  2742.         // $tt == -1 if pre TIMESTAMP_FIRST_YEAR
  2743.         if (($tt === false || $tt == -1) && $v != false) return $v;
  2744.         if ($tt === 0) return $this->emptyTimeStamp;
  2745.         return adodb_date($fmt,$tt);
  2746.     }
  2747.     
  2748.     
  2749.     /**
  2750.      * @param v      is the character date in YYYY-MM-DD format, returned by database
  2751.      * @param fmt     is the format to apply to it, using date()
  2752.      *
  2753.      * @return a date formated as user desires
  2754.      */
  2755.     function UserDate($v,$fmt='Y-m-d')
  2756.     {
  2757.         $tt = $this->UnixDate($v);
  2758.         // $tt == -1 if pre TIMESTAMP_FIRST_YEAR
  2759.         if (($tt === false || $tt == -1) && $v != false) return $v;
  2760.         else if ($tt == 0) return $this->emptyDate;
  2761.         else if ($tt == -1) { // pre-TIMESTAMP_FIRST_YEAR
  2762.         }
  2763.         return adodb_date($fmt,$tt);
  2764.     }
  2765.     
  2766.     
  2767.     /**
  2768.      * @param $v is a date string in YYYY-MM-DD format
  2769.      *
  2770.      * @return date in unix timestamp format, or 0 if before TIMESTAMP_FIRST_YEAR, or false if invalid date format
  2771.      */
  2772.     function UnixDate($v)
  2773.     {
  2774.         return ADOConnection::UnixDate($v);
  2775.     }
  2776.     
  2777.  
  2778.     /**
  2779.      * @param $v is a timestamp string in YYYY-MM-DD HH-NN-SS format
  2780.      *
  2781.      * @return date in unix timestamp format, or 0 if before TIMESTAMP_FIRST_YEAR, or false if invalid date format
  2782.      */
  2783.     function UnixTimeStamp($v)
  2784.     {
  2785.         return ADOConnection::UnixTimeStamp($v);
  2786.     }
  2787.     
  2788.     
  2789.     /**
  2790.     * PEAR DB Compat - do not use internally
  2791.     */
  2792.     function Free()
  2793.     {
  2794.         return $this->Close();
  2795.     }
  2796.     
  2797.     
  2798.     /**
  2799.     * PEAR DB compat, number of rows
  2800.     */
  2801.     function NumRows()
  2802.     {
  2803.         return $this->_numOfRows;
  2804.     }
  2805.     
  2806.     
  2807.     /**
  2808.     * PEAR DB compat, number of cols
  2809.     */
  2810.     function NumCols()
  2811.     {
  2812.         return $this->_numOfFields;
  2813.     }
  2814.     
  2815.     /**
  2816.     * Fetch a row, returning false if no more rows. 
  2817.     * This is PEAR DB compat mode.
  2818.     *
  2819.     * @return false or array containing the current record
  2820.     */
  2821.     function &FetchRow()
  2822.     {
  2823.         if ($this->EOF) {
  2824.             $false = false;
  2825.             return $false;
  2826.         }
  2827.         $arr = $this->fields;
  2828.         $this->_currentRow++;
  2829.         if (!$this->_fetch()) $this->EOF = true;
  2830.         return $arr;
  2831.     }
  2832.     
  2833.     
  2834.     /**
  2835.     * Fetch a row, returning PEAR_Error if no more rows. 
  2836.     * This is PEAR DB compat mode.
  2837.     *
  2838.     * @return DB_OK or error object
  2839.     */
  2840.     function FetchInto(&$arr)
  2841.     {
  2842.         if ($this->EOF) return (defined('PEAR_ERROR_RETURN')) ? new PEAR_Error('EOF',-1): false;
  2843.         $arr = $this->fields;
  2844.         $this->MoveNext();
  2845.         return 1; // DB_OK
  2846.     }
  2847.     
  2848.     
  2849.     /**
  2850.      * Move to the first row in the recordset. Many databases do NOT support this.
  2851.      *
  2852.      * @return true or false
  2853.      */
  2854.     function MoveFirst() 
  2855.     {
  2856.         if ($this->_currentRow == 0) return true;
  2857.         return $this->Move(0);            
  2858.     }            
  2859.  
  2860.     
  2861.     /**
  2862.      * Move to the last row in the recordset. 
  2863.      *
  2864.      * @return true or false
  2865.      */
  2866.     function MoveLast() 
  2867.     {
  2868.         if ($this->_numOfRows >= 0) return $this->Move($this->_numOfRows-1);
  2869.         if ($this->EOF) return false;
  2870.         while (!$this->EOF) {
  2871.             $f = $this->fields;
  2872.             $this->MoveNext();
  2873.         }
  2874.         $this->fields = $f;
  2875.         $this->EOF = false;
  2876.         return true;
  2877.     }
  2878.     
  2879.     
  2880.     /**
  2881.      * Move to next record in the recordset.
  2882.      *
  2883.      * @return true if there still rows available, or false if there are no more rows (EOF).
  2884.      */
  2885.     function MoveNext() 
  2886.     {
  2887.         if (!$this->EOF) {
  2888.             $this->_currentRow++;
  2889.             if ($this->_fetch()) return true;
  2890.         }
  2891.         $this->EOF = true;
  2892.         /* -- tested error handling when scrolling cursor -- seems useless.
  2893.         $conn = $this->connection;
  2894.         if ($conn && $conn->raiseErrorFn && ($errno = $conn->ErrorNo())) {
  2895.             $fn = $conn->raiseErrorFn;
  2896.             $fn($conn->databaseType,'MOVENEXT',$errno,$conn->ErrorMsg().' ('.$this->sql.')',$conn->host,$conn->database);
  2897.         }
  2898.         */
  2899.         return false;
  2900.     }
  2901.     
  2902.     
  2903.     /**
  2904.      * Random access to a specific row in the recordset. Some databases do not support
  2905.      * access to previous rows in the databases (no scrolling backwards).
  2906.      *
  2907.      * @param rowNumber is the row to move to (0-based)
  2908.      *
  2909.      * @return true if there still rows available, or false if there are no more rows (EOF).
  2910.      */
  2911.     function Move($rowNumber = 0) 
  2912.     {
  2913.         $this->EOF = false;
  2914.         if ($rowNumber == $this->_currentRow) return true;
  2915.         if ($rowNumber >= $this->_numOfRows)
  2916.                if ($this->_numOfRows != -1) $rowNumber = $this->_numOfRows-2;
  2917.                   
  2918.         if ($this->canSeek) { 
  2919.     
  2920.             if ($this->_seek($rowNumber)) {
  2921.                 $this->_currentRow = $rowNumber;
  2922.                 if ($this->_fetch()) {
  2923.                     return true;
  2924.                 }
  2925.             } else {
  2926.                 $this->EOF = true;
  2927.                 return false;
  2928.             }
  2929.         } else {
  2930.             if ($rowNumber < $this->_currentRow) return false;
  2931.             global $ADODB_EXTENSION;
  2932.             if ($ADODB_EXTENSION) {
  2933.                 while (!$this->EOF && $this->_currentRow < $rowNumber) {
  2934.                     adodb_movenext($this);
  2935.                 }
  2936.             } else {
  2937.             
  2938.                 while (! $this->EOF && $this->_currentRow < $rowNumber) {
  2939.                     $this->_currentRow++;
  2940.                     
  2941.                     if (!$this->_fetch()) $this->EOF = true;
  2942.                 }
  2943.             }
  2944.             return !($this->EOF);
  2945.         }
  2946.         
  2947.         $this->fields = false;    
  2948.         $this->EOF = true;
  2949.         return false;
  2950.     }
  2951.     
  2952.         
  2953.     /**
  2954.      * Get the value of a field in the current row by column name.
  2955.      * Will not work if ADODB_FETCH_MODE is set to ADODB_FETCH_NUM.
  2956.      * 
  2957.      * @param colname  is the field to access
  2958.      *
  2959.      * @return the value of $colname column
  2960.      */
  2961.     function Fields($colname)
  2962.     {
  2963.         return $this->fields[$colname];
  2964.     }
  2965.     
  2966.     function GetAssocKeys($upper=true)
  2967.     {
  2968.         $this->bind = array();
  2969.         for ($i=0; $i < $this->_numOfFields; $i++) {
  2970.             $o =& $this->FetchField($i);
  2971.             if ($upper === 2) $this->bind[$o->name] = $i;
  2972.             else $this->bind[($upper) ? strtoupper($o->name) : strtolower($o->name)] = $i;
  2973.         }
  2974.     }
  2975.     
  2976.   /**
  2977.    * Use associative array to get fields array for databases that do not support
  2978.    * associative arrays. Submitted by Paolo S. Asioli paolo.asioli#libero.it
  2979.    *
  2980.    * If you don't want uppercase cols, set $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC
  2981.    * before you execute your SQL statement, and access $rs->fields['col'] directly.
  2982.    *
  2983.    * $upper  0 = lowercase, 1 = uppercase, 2 = whatever is returned by FetchField
  2984.    */
  2985.     function &GetRowAssoc($upper=1)
  2986.     {
  2987.         $record = array();
  2988.      //    if (!$this->fields) return $record;
  2989.         
  2990.            if (!$this->bind) {
  2991.             $this->GetAssocKeys($upper);
  2992.         }
  2993.         
  2994.         foreach($this->bind as $k => $v) {
  2995.             $record[$k] = $this->fields[$v];
  2996.         }
  2997.  
  2998.         return $record;
  2999.     }
  3000.     
  3001.     
  3002.     /**
  3003.      * Clean up recordset
  3004.      *
  3005.      * @return true or false
  3006.      */
  3007.     function Close() 
  3008.     {
  3009.         // free connection object - this seems to globally free the object
  3010.         // and not merely the reference, so don't do this...
  3011.         // $this->connection = false; 
  3012.         if (!$this->_closed) {
  3013.             $this->_closed = true;
  3014.             return $this->_close();        
  3015.         } else
  3016.             return true;
  3017.     }
  3018.     
  3019.     /**
  3020.      * synonyms RecordCount and RowCount    
  3021.      *
  3022.      * @return the number of rows or -1 if this is not supported
  3023.      */
  3024.     function RecordCount() {return $this->_numOfRows;}
  3025.     
  3026.     
  3027.     /*
  3028.     * If we are using PageExecute(), this will return the maximum possible rows
  3029.     * that can be returned when paging a recordset.
  3030.     */
  3031.     function MaxRecordCount()
  3032.     {
  3033.         return ($this->_maxRecordCount) ? $this->_maxRecordCount : $this->RecordCount();
  3034.     }
  3035.     
  3036.     /**
  3037.      * synonyms RecordCount and RowCount    
  3038.      *
  3039.      * @return the number of rows or -1 if this is not supported
  3040.      */
  3041.     function RowCount() {return $this->_numOfRows;} 
  3042.     
  3043.  
  3044.      /**
  3045.      * Portable RecordCount. Pablo Roca <pabloroca@mvps.org>
  3046.      *
  3047.      * @return  the number of records from a previous SELECT. All databases support this.
  3048.      *
  3049.      * But aware possible problems in multiuser environments. For better speed the table
  3050.      * must be indexed by the condition. Heavy test this before deploying.
  3051.      */ 
  3052.     function PO_RecordCount($table="", $condition="") {
  3053.         
  3054.         $lnumrows = $this->_numOfRows;
  3055.         // the database doesn't support native recordcount, so we do a workaround
  3056.         if ($lnumrows == -1 && $this->connection) {
  3057.             IF ($table) {
  3058.                 if ($condition) $condition = " WHERE " . $condition; 
  3059.                 $resultrows = &$this->connection->Execute("SELECT COUNT(*) FROM $table $condition");
  3060.                 if ($resultrows) $lnumrows = reset($resultrows->fields);
  3061.             }
  3062.         }
  3063.         return $lnumrows;
  3064.     }
  3065.     
  3066.     /**
  3067.      * @return the current row in the recordset. If at EOF, will return the last row. 0-based.
  3068.      */
  3069.     function CurrentRow() {return $this->_currentRow;}
  3070.     
  3071.     /**
  3072.      * synonym for CurrentRow -- for ADO compat
  3073.      *
  3074.      * @return the current row in the recordset. If at EOF, will return the last row. 0-based.
  3075.      */
  3076.     function AbsolutePosition() {return $this->_currentRow;}
  3077.     
  3078.     /**
  3079.      * @return the number of columns in the recordset. Some databases will set this to 0
  3080.      * if no records are returned, others will return the number of columns in the query.
  3081.      */
  3082.     function FieldCount() {return $this->_numOfFields;}   
  3083.  
  3084.  
  3085.     /**
  3086.      * Get the ADOFieldObject of a specific column.
  3087.      *
  3088.      * @param fieldoffset    is the column position to access(0-based).
  3089.      *
  3090.      * @return the ADOFieldObject for that column, or false.
  3091.      */
  3092.     function &FetchField($fieldoffset) 
  3093.     {
  3094.         // must be defined by child class
  3095.     }    
  3096.     
  3097.     /**
  3098.      * Get the ADOFieldObjects of all columns in an array.
  3099.      *
  3100.      */
  3101.     function& FieldTypesArray()
  3102.     {
  3103.         $arr = array();
  3104.         for ($i=0, $max=$this->_numOfFields; $i < $max; $i++) 
  3105.             $arr[] = $this->FetchField($i);
  3106.         return $arr;
  3107.     }
  3108.     
  3109.     /**
  3110.     * Return the fields array of the current row as an object for convenience.
  3111.     * The default case is lowercase field names.
  3112.     *
  3113.     * @return the object with the properties set to the fields of the current row
  3114.     */
  3115.     function &FetchObj()
  3116.     {
  3117.         $o =& $this->FetchObject(false);
  3118.         return $o;
  3119.     }
  3120.     
  3121.     /**
  3122.     * Return the fields array of the current row as an object for convenience.
  3123.     * The default case is uppercase.
  3124.     * 
  3125.     * @param $isupper to set the object property names to uppercase
  3126.     *
  3127.     * @return the object with the properties set to the fields of the current row
  3128.     */
  3129.     function &FetchObject($isupper=true)
  3130.     {
  3131.         if (empty($this->_obj)) {
  3132.             $this->_obj =& new ADOFetchObj();
  3133.             $this->_names = array();
  3134.             for ($i=0; $i <$this->_numOfFields; $i++) {
  3135.                 $f = $this->FetchField($i);
  3136.                 $this->_names[] = $f->name;
  3137.             }
  3138.         }
  3139.         $i = 0;
  3140.         if (PHP_VERSION >= 5) $o = clone($this->_obj);
  3141.         else $o = $this->_obj;
  3142.     
  3143.         for ($i=0; $i <$this->_numOfFields; $i++) {
  3144.             $name = $this->_names[$i];
  3145.             if ($isupper) $n = strtoupper($name);
  3146.             else $n = $name;
  3147.             
  3148.             $o->$n = $this->Fields($name);
  3149.         }
  3150.         return $o;
  3151.     }
  3152.     
  3153.     /**
  3154.     * Return the fields array of the current row as an object for convenience.
  3155.     * The default is lower-case field names.
  3156.     * 
  3157.     * @return the object with the properties set to the fields of the current row,
  3158.     *     or false if EOF
  3159.     *
  3160.     * Fixed bug reported by tim@orotech.net
  3161.     */
  3162.     function &FetchNextObj()
  3163.     {
  3164.         $o =& $this->FetchNextObject(false);
  3165.         return $o;
  3166.     }
  3167.     
  3168.     
  3169.     /**
  3170.     * Return the fields array of the current row as an object for convenience. 
  3171.     * The default is upper case field names.
  3172.     * 
  3173.     * @param $isupper to set the object property names to uppercase
  3174.     *
  3175.     * @return the object with the properties set to the fields of the current row,
  3176.     *     or false if EOF
  3177.     *
  3178.     * Fixed bug reported by tim@orotech.net
  3179.     */
  3180.     function &FetchNextObject($isupper=true)
  3181.     {
  3182.         $o = false;
  3183.         if ($this->_numOfRows != 0 && !$this->EOF) {
  3184.             $o = $this->FetchObject($isupper);    
  3185.             $this->_currentRow++;
  3186.             if ($this->_fetch()) return $o;
  3187.         }
  3188.         $this->EOF = true;
  3189.         return $o;
  3190.     }
  3191.     
  3192.     /**
  3193.      * Get the metatype of the column. This is used for formatting. This is because
  3194.      * many databases use different names for the same type, so we transform the original
  3195.      * type to our standardised version which uses 1 character codes:
  3196.      *
  3197.      * @param t  is the type passed in. Normally is ADOFieldObject->type.
  3198.      * @param len is the maximum length of that field. This is because we treat character
  3199.      *     fields bigger than a certain size as a 'B' (blob).
  3200.      * @param fieldobj is the field object returned by the database driver. Can hold
  3201.      *    additional info (eg. primary_key for mysql).
  3202.      * 
  3203.      * @return the general type of the data: 
  3204.      *    C for character < 250 chars
  3205.      *    X for teXt (>= 250 chars)
  3206.      *    B for Binary
  3207.      *     N for numeric or floating point
  3208.      *    D for date
  3209.      *    T for timestamp
  3210.      *     L for logical/Boolean
  3211.      *    I for integer
  3212.      *    R for autoincrement counter/integer
  3213.      * 
  3214.      *
  3215.     */
  3216.     function MetaType($t,$len=-1,$fieldobj=false)
  3217.     {
  3218.         if (is_object($t)) {
  3219.             $fieldobj = $t;
  3220.             $t = $fieldobj->type;
  3221.             $len = $fieldobj->max_length;
  3222.         }
  3223.     // changed in 2.32 to hashing instead of switch stmt for speed...
  3224.     static $typeMap = array(
  3225.         'VARCHAR' => 'C',
  3226.         'VARCHAR2' => 'C',
  3227.         'CHAR' => 'C',
  3228.         'C' => 'C',
  3229.         'STRING' => 'C',
  3230.         'NCHAR' => 'C',
  3231.         'NVARCHAR' => 'C',
  3232.         'VARYING' => 'C',
  3233.         'BPCHAR' => 'C',
  3234.         'CHARACTER' => 'C',
  3235.         'INTERVAL' => 'C',  # Postgres
  3236.         ##
  3237.         'LONGCHAR' => 'X',
  3238.         'TEXT' => 'X',
  3239.         'NTEXT' => 'X',
  3240.         'M' => 'X',
  3241.         'X' => 'X',
  3242.         'CLOB' => 'X',
  3243.         'NCLOB' => 'X',
  3244.         'LVARCHAR' => 'X',
  3245.         ##
  3246.         'BLOB' => 'B',
  3247.         'IMAGE' => 'B',
  3248.         'BINARY' => 'B',
  3249.         'VARBINARY' => 'B',
  3250.         'LONGBINARY' => 'B',
  3251.         'B' => 'B',
  3252.         ##
  3253.         'YEAR' => 'D', // mysql
  3254.         'DATE' => 'D',
  3255.         'D' => 'D',
  3256.         ##
  3257.         'TIME' => 'T',
  3258.         'TIMESTAMP' => 'T',
  3259.         'DATETIME' => 'T',
  3260.         'TIMESTAMPTZ' => 'T',
  3261.         'T' => 'T',
  3262.         ##
  3263.         'BOOL' => 'L',
  3264.         'BOOLEAN' => 'L', 
  3265.         'BIT' => 'L',
  3266.         'L' => 'L',
  3267.         ##
  3268.         'COUNTER' => 'R',
  3269.         'R' => 'R',
  3270.         'SERIAL' => 'R', // ifx
  3271.         'INT IDENTITY' => 'R',
  3272.         ##
  3273.         'INT' => 'I',
  3274.         'INT2' => 'I',
  3275.         'INT4' => 'I',
  3276.         'INT8' => 'I',
  3277.         'INTEGER' => 'I',
  3278.         'INTEGER UNSIGNED' => 'I',
  3279.         'SHORT' => 'I',
  3280.         'TINYINT' => 'I',
  3281.         'SMALLINT' => 'I',
  3282.         'I' => 'I',
  3283.         ##
  3284.         'LONG' => 'N', // interbase is numeric, oci8 is blob
  3285.         'BIGINT' => 'N', // this is bigger than PHP 32-bit integers
  3286.         'DECIMAL' => 'N',
  3287.         'DEC' => 'N',
  3288.         'REAL' => 'N',
  3289.         'DOUBLE' => 'N',
  3290.         'DOUBLE PRECISION' => 'N',
  3291.         'SMALLFLOAT' => 'N',
  3292.         'FLOAT' => 'N',
  3293.         'NUMBER' => 'N',
  3294.         'NUM' => 'N',
  3295.         'NUMERIC' => 'N',
  3296.         'MONEY' => 'N',
  3297.         
  3298.         ## informix 9.2
  3299.         'SQLINT' => 'I', 
  3300.         'SQLSERIAL' => 'I', 
  3301.         'SQLSMINT' => 'I', 
  3302.         'SQLSMFLOAT' => 'N', 
  3303.         'SQLFLOAT' => 'N', 
  3304.         'SQLMONEY' => 'N', 
  3305.         'SQLDECIMAL' => 'N', 
  3306.         'SQLDATE' => 'D', 
  3307.         'SQLVCHAR' => 'C', 
  3308.         'SQLCHAR' => 'C', 
  3309.         'SQLDTIME' => 'T', 
  3310.         'SQLINTERVAL' => 'N', 
  3311.         'SQLBYTES' => 'B', 
  3312.         'SQLTEXT' => 'X' 
  3313.         );
  3314.         
  3315.         $tmap = false;
  3316.         $t = strtoupper($t);
  3317.         $tmap = (isset($typeMap[$t])) ? $typeMap[$t] : 'N';
  3318.         switch ($tmap) {
  3319.         case 'C':
  3320.         
  3321.             // is the char field is too long, return as text field... 
  3322.             if ($this->blobSize >= 0) {
  3323.                 if ($len > $this->blobSize) return 'X';
  3324.             } else if ($len > 250) {
  3325.                 return 'X';
  3326.             }
  3327.             return 'C';
  3328.             
  3329.         case 'I':
  3330.             if (!empty($fieldobj->primary_key)) return 'R';
  3331.             return 'I';
  3332.         
  3333.         case false:
  3334.             return 'N';
  3335.             
  3336.         case 'B':
  3337.              if (isset($fieldobj->binary)) 
  3338.                  return ($fieldobj->binary) ? 'B' : 'X';
  3339.             return 'B';
  3340.         
  3341.         case 'D':
  3342.             if (!empty($this->datetime)) return 'T';
  3343.             return 'D';
  3344.             
  3345.         default: 
  3346.             if ($t == 'LONG' && $this->dataProvider == 'oci8') return 'B';
  3347.             return $tmap;
  3348.         }
  3349.     }
  3350.     
  3351.     function _close() {}
  3352.     
  3353.     /**
  3354.      * set/returns the current recordset page when paginating
  3355.      */
  3356.     function AbsolutePage($page=-1)
  3357.     {
  3358.         if ($page != -1) $this->_currentPage = $page;
  3359.         return $this->_currentPage;
  3360.     }
  3361.     
  3362.     /**
  3363.      * set/returns the status of the atFirstPage flag when paginating
  3364.      */
  3365.     function AtFirstPage($status=false)
  3366.     {
  3367.         if ($status != false) $this->_atFirstPage = $status;
  3368.         return $this->_atFirstPage;
  3369.     }
  3370.     
  3371.     function LastPageNo($page = false)
  3372.     {
  3373.         if ($page != false) $this->_lastPageNo = $page;
  3374.         return $this->_lastPageNo;
  3375.     }
  3376.     
  3377.     /**
  3378.      * set/returns the status of the atLastPage flag when paginating
  3379.      */
  3380.     function AtLastPage($status=false)
  3381.     {
  3382.         if ($status != false) $this->_atLastPage = $status;
  3383.         return $this->_atLastPage;
  3384.     }
  3385.     
  3386. } // end class ADORecordSet
  3387.     
  3388.     //==============================================================================================    
  3389.     // CLASS ADORecordSet_array
  3390.     //==============================================================================================    
  3391.     
  3392.     /**
  3393.      * This class encapsulates the concept of a recordset created in memory
  3394.      * as an array. This is useful for the creation of cached recordsets.
  3395.      * 
  3396.      * Note that the constructor is different from the standard ADORecordSet
  3397.      */
  3398.     
  3399.     class ADORecordSet_array extends ADORecordSet
  3400.     {
  3401.         var $databaseType = 'array';
  3402.  
  3403.         var $_array;     // holds the 2-dimensional data array
  3404.         var $_types;    // the array of types of each column (C B I L M)
  3405.         var $_colnames;    // names of each column in array
  3406.         var $_skiprow1;    // skip 1st row because it holds column names
  3407.         var $_fieldarr; // holds array of field objects
  3408.         var $canSeek = true;
  3409.         var $affectedrows = false;
  3410.         var $insertid = false;
  3411.         var $sql = '';
  3412.         var $compat = false;
  3413.         /**
  3414.          * Constructor
  3415.          *
  3416.          */
  3417.         function ADORecordSet_array($fakeid=1)
  3418.         {
  3419.         global $ADODB_FETCH_MODE,$ADODB_COMPAT_FETCH;
  3420.         
  3421.             // fetch() on EOF does not delete $this->fields
  3422.             $this->compat = !empty($ADODB_COMPAT_FETCH);
  3423.             $this->ADORecordSet($fakeid); // fake queryID        
  3424.             $this->fetchMode = $ADODB_FETCH_MODE;
  3425.         }
  3426.         
  3427.         
  3428.         /**
  3429.          * Setup the array.
  3430.          *
  3431.          * @param array        is a 2-dimensional array holding the data.
  3432.          *            The first row should hold the column names 
  3433.          *            unless paramter $colnames is used.
  3434.          * @param typearr    holds an array of types. These are the same types 
  3435.          *            used in MetaTypes (C,B,L,I,N).
  3436.          * @param [colnames]    array of column names. If set, then the first row of
  3437.          *            $array should not hold the column names.
  3438.          */
  3439.         function InitArray($array,$typearr,$colnames=false)
  3440.         {
  3441.             $this->_array = $array;
  3442.             $this->_types = $typearr;    
  3443.             if ($colnames) {
  3444.                 $this->_skiprow1 = false;
  3445.                 $this->_colnames = $colnames;
  3446.             } else  {
  3447.                 $this->_skiprow1 = true;
  3448.                 $this->_colnames = $array[0];
  3449.             }
  3450.             $this->Init();
  3451.         }
  3452.         /**
  3453.          * Setup the Array and datatype file objects
  3454.          *
  3455.          * @param array        is a 2-dimensional array holding the data.
  3456.          *            The first row should hold the column names 
  3457.          *            unless paramter $colnames is used.
  3458.          * @param fieldarr    holds an array of ADOFieldObject's.
  3459.          */
  3460.         function InitArrayFields(&$array,&$fieldarr)
  3461.         {
  3462.             $this->_array =& $array;
  3463.             $this->_skiprow1= false;
  3464.             if ($fieldarr) {
  3465.                 $this->_fieldobjects =& $fieldarr;
  3466.             } 
  3467.             $this->Init();
  3468.         }
  3469.         
  3470.         function &GetArray($nRows=-1)
  3471.         {
  3472.             if ($nRows == -1 && $this->_currentRow <= 0 && !$this->_skiprow1) {
  3473.                 return $this->_array;
  3474.             } else {
  3475.                 $arr =& ADORecordSet::GetArray($nRows);
  3476.                 return $arr;
  3477.             }
  3478.         }
  3479.         
  3480.         function _initrs()
  3481.         {
  3482.             $this->_numOfRows =  sizeof($this->_array);
  3483.             if ($this->_skiprow1) $this->_numOfRows -= 1;
  3484.         
  3485.             $this->_numOfFields =(isset($this->_fieldobjects)) ?
  3486.                  sizeof($this->_fieldobjects):sizeof($this->_types);
  3487.         }
  3488.         
  3489.         /* Use associative array to get fields array */
  3490.         function Fields($colname)
  3491.         {
  3492.             $mode = isset($this->adodbFetchMode) ? $this->adodbFetchMode : $this->fetchMode;
  3493.             
  3494.             if ($mode & ADODB_FETCH_ASSOC) {
  3495.                 if (!isset($this->fields[$colname])) $colname = strtolower($colname);
  3496.                 return $this->fields[$colname];
  3497.             }
  3498.             if (!$this->bind) {
  3499.                 $this->bind = array();
  3500.                 for ($i=0; $i < $this->_numOfFields; $i++) {
  3501.                     $o = $this->FetchField($i);
  3502.                     $this->bind[strtoupper($o->name)] = $i;
  3503.                 }
  3504.             }
  3505.             return $this->fields[$this->bind[strtoupper($colname)]];
  3506.         }
  3507.         
  3508.         function &FetchField($fieldOffset = -1) 
  3509.         {
  3510.             if (isset($this->_fieldobjects)) {
  3511.                 return $this->_fieldobjects[$fieldOffset];
  3512.             }
  3513.             $o =  new ADOFieldObject();
  3514.             $o->name = $this->_colnames[$fieldOffset];
  3515.             $o->type =  $this->_types[$fieldOffset];
  3516.             $o->max_length = -1; // length not known
  3517.             
  3518.             return $o;
  3519.         }
  3520.             
  3521.         function _seek($row)
  3522.         {
  3523.             if (sizeof($this->_array) && 0 <= $row && $row < $this->_numOfRows) {
  3524.                 $this->_currentRow = $row;
  3525.                 if ($this->_skiprow1) $row += 1;
  3526.                 $this->fields = $this->_array[$row];
  3527.                 return true;
  3528.             }
  3529.             return false;
  3530.         }
  3531.         
  3532.         function MoveNext() 
  3533.         {
  3534.             if (!$this->EOF) {        
  3535.                 $this->_currentRow++;
  3536.                 
  3537.                 $pos = $this->_currentRow;
  3538.                 
  3539.                 if ($this->_numOfRows <= $pos) {
  3540.                     if (!$this->compat) $this->fields = false;
  3541.                 } else {
  3542.                     if ($this->_skiprow1) $pos += 1;
  3543.                     $this->fields = $this->_array[$pos];
  3544.                     return true;
  3545.                 }        
  3546.                 $this->EOF = true;
  3547.             }
  3548.             
  3549.             return false;
  3550.         }    
  3551.     
  3552.         function _fetch()
  3553.         {
  3554.             $pos = $this->_currentRow;
  3555.             
  3556.             if ($this->_numOfRows <= $pos) {
  3557.                 if (!$this->compat) $this->fields = false;
  3558.                 return false;
  3559.             }
  3560.             if ($this->_skiprow1) $pos += 1;
  3561.             $this->fields = $this->_array[$pos];
  3562.             return true;
  3563.         }
  3564.         
  3565.         function _close() 
  3566.         {
  3567.             return true;    
  3568.         }
  3569.     
  3570.     } // ADORecordSet_array
  3571.  
  3572.     //==============================================================================================    
  3573.     // HELPER FUNCTIONS
  3574.     //==============================================================================================            
  3575.     
  3576.     /**
  3577.      * Synonym for ADOLoadCode. Private function. Do not use.
  3578.      *
  3579.      * @deprecated
  3580.      */
  3581.     function ADOLoadDB($dbType) 
  3582.     { 
  3583.         return ADOLoadCode($dbType);
  3584.     }
  3585.         
  3586.     /**
  3587.      * Load the code for a specific database driver. Private function. Do not use.
  3588.      */
  3589.     function ADOLoadCode($dbType) 
  3590.     {
  3591.     global $ADODB_LASTDB;
  3592.     
  3593.         if (!$dbType) return false;
  3594.         $db = strtolower($dbType);
  3595.         switch ($db) {
  3596.             case 'ado': 
  3597.                 if (PHP_VERSION >= 5) $db = 'ado5';
  3598.                 $class = 'ado'; 
  3599.                 break;
  3600.             case 'ifx':
  3601.             case 'maxsql': $class = $db = 'mysqlt'; break;
  3602.             case 'postgres':
  3603.             case 'postgres8':
  3604.             case 'pgsql': $class = $db = 'postgres7'; break;
  3605.             default:
  3606.                 $class = $db; break;
  3607.         }
  3608.         
  3609.         $file = ADODB_DIR."/drivers/adodb-".$db.".inc.php";
  3610.         @include_once($file);
  3611.         $ADODB_LASTDB = $class;
  3612.         
  3613.         if (class_exists("ADODB_" . $db)) return $class;
  3614.         
  3615.         //ADOConnection::outp(adodb_pr(get_declared_classes(),true));
  3616.         if (!file_exists($file)) ADOConnection::outp("Missing file: $file");
  3617.         else ADOConnection::outp("Syntax error in file: $file");
  3618.         return false;
  3619.     }
  3620.  
  3621.     /**
  3622.      * synonym for ADONewConnection for people like me who cannot remember the correct name
  3623.      */
  3624.     function &NewADOConnection($db='')
  3625.     {
  3626.         $tmp =& ADONewConnection($db);
  3627.         return $tmp;
  3628.     }
  3629.     
  3630.     /**
  3631.      * Instantiate a new Connection class for a specific database driver.
  3632.      *
  3633.      * @param [db]  is the database Connection object to create. If undefined,
  3634.      *     use the last database driver that was loaded by ADOLoadCode().
  3635.      *
  3636.      * @return the freshly created instance of the Connection class.
  3637.      */
  3638.     function &ADONewConnection($db='')
  3639.     {
  3640.     GLOBAL $ADODB_NEWCONNECTION, $ADODB_LASTDB;
  3641.         
  3642.         if (!defined('ADODB_ASSOC_CASE')) define('ADODB_ASSOC_CASE',2);
  3643.         $errorfn = (defined('ADODB_ERROR_HANDLER')) ? ADODB_ERROR_HANDLER : false;
  3644.         $false = false;
  3645.         if (strpos($db,'://')) {
  3646.             $origdsn = $db;
  3647.             $dsna = @parse_url($db);
  3648.             if (!$dsna) {
  3649.                 // special handling of oracle, which might not have host
  3650.                 $db = str_replace('@/','@adodb-fakehost/',$db);
  3651.                 $dsna = parse_url($db);
  3652.                 if (!$dsna) return $false;
  3653.                 $dsna['host'] = '';
  3654.             }
  3655.             $db = @$dsna['scheme'];
  3656.             if (!$db) return $false;
  3657.             $dsna['host'] = isset($dsna['host']) ? rawurldecode($dsna['host']) : '';
  3658.             $dsna['user'] = isset($dsna['user']) ? rawurldecode($dsna['user']) : '';
  3659.             $dsna['pass'] = isset($dsna['pass']) ? rawurldecode($dsna['pass']) : '';
  3660.             $dsna['path'] = isset($dsna['path']) ? rawurldecode(substr($dsna['path'],1)) : ''; # strip off initial /
  3661.             
  3662.             if (isset($dsna['query'])) {
  3663.                 $opt1 = explode('&',$dsna['query']);
  3664.                 foreach($opt1 as $k => $v) {
  3665.                     $arr = explode('=',$v);
  3666.                     $opt[$arr[0]] = isset($arr[1]) ? rawurldecode($arr[1]) : 1;
  3667.                 }
  3668.             } else $opt = array();
  3669.         }
  3670.         
  3671.     /*
  3672.      *  phptype: Database backend used in PHP (mysql, odbc etc.)
  3673.      *  dbsyntax: Database used with regards to SQL syntax etc.
  3674.      *  protocol: Communication protocol to use (tcp, unix etc.)
  3675.      *  hostspec: Host specification (hostname[:port])
  3676.      *  database: Database to use on the DBMS server
  3677.      *  username: User name for login
  3678.      *  password: Password for login
  3679.      */
  3680.         if (!empty($ADODB_NEWCONNECTION)) {
  3681.             $obj = $ADODB_NEWCONNECTION($db);
  3682.  
  3683.         } else {
  3684.         
  3685.             if (!isset($ADODB_LASTDB)) $ADODB_LASTDB = '';
  3686.             if (empty($db)) $db = $ADODB_LASTDB;
  3687.             
  3688.             if ($db != $ADODB_LASTDB) $db = ADOLoadCode($db);
  3689.             
  3690.             if (!$db) {
  3691.                 if (isset($origdsn)) $db = $origdsn;
  3692.                 if ($errorfn) {
  3693.                     // raise an error
  3694.                     $ignore = false;
  3695.                     $errorfn('ADONewConnection', 'ADONewConnection', -998,
  3696.                              "could not load the database driver for '$db'",
  3697.                              $db,false,$ignore);
  3698.                 } else
  3699.                      ADOConnection::outp( "<p>ADONewConnection: Unable to load database driver '$db'</p>",false);
  3700.                     
  3701.                 return $false;
  3702.             }
  3703.             
  3704.             $cls = 'ADODB_'.$db;
  3705.             if (!class_exists($cls)) {
  3706.                 adodb_backtrace();
  3707.                 return $false;
  3708.             }
  3709.             
  3710.             $obj =& new $cls();
  3711.         }
  3712.         
  3713.         # constructor should not fail
  3714.         if ($obj) {
  3715.             if ($errorfn)  $obj->raiseErrorFn = $errorfn;
  3716.             if (isset($dsna)) {
  3717.             
  3718.                 foreach($opt as $k => $v) {
  3719.                     switch(strtolower($k)) {
  3720.                     case 'persist':
  3721.                     case 'persistent':     $persist = $v; break;
  3722.                     case 'debug':        $obj->debug = (integer) $v; break;
  3723.                     #ibase
  3724.                     case 'role':        $obj->role = $v; break;
  3725.                     case 'dialect':     $obj->dialect = (integer) $v; break;
  3726.                     case 'charset':        $obj->charset = $v; break;
  3727.                     case 'buffers':        $obj->buffers = $v; break;
  3728.                     case 'fetchmode':   $obj->SetFetchMode($v); break;
  3729.                     #ado
  3730.                     case 'charpage':    $obj->charPage = $v; break;
  3731.                     #mysql, mysqli
  3732.                     case 'clientflags': $obj->clientFlags = $v; break;
  3733.                     #mysqli
  3734.                     case 'port': $obj->port = $v; break;
  3735.                     case 'socket': $obj->socket = $v; break;
  3736.                     #oci8
  3737.                     case 'nls_date_format': $obj->NLS_DATE_FORMAT = $v; break;
  3738.                     }
  3739.                 }
  3740.                 if (empty($persist))
  3741.                     $ok = $obj->Connect($dsna['host'], $dsna['user'], $dsna['pass'], $dsna['path']);
  3742.                 else
  3743.                     $ok = $obj->PConnect($dsna['host'], $dsna['user'], $dsna['pass'], $dsna['path']);
  3744.                     
  3745.                 if (!$ok) return $false;
  3746.             }
  3747.         }
  3748.         return $obj;
  3749.     }
  3750.     
  3751.     
  3752.     
  3753.     // $perf == true means called by NewPerfMonitor(), otherwise for data dictionary
  3754.     function _adodb_getdriver($provider,$drivername,$perf=false)
  3755.     {
  3756.         switch ($provider) {
  3757.         case 'odbtp':   if (strncmp('odbtp_',$drivername,6)==0) return substr($drivername,6); 
  3758.         case 'odbc' :   if (strncmp('odbc_',$drivername,5)==0) return substr($drivername,5); 
  3759.         case 'ado'  :   if (strncmp('ado_',$drivername,4)==0) return substr($drivername,4);
  3760.         case 'native':  break;
  3761.         default:
  3762.             return $provider;
  3763.         }
  3764.         
  3765.         switch($drivername) {
  3766.         case 'firebird15': $drivername = 'firebird'; break;
  3767.         case 'oracle': $drivername = 'oci8'; break;
  3768.         case 'access': if ($perf) $drivername = ''; break;
  3769.         case 'db2'   : break;
  3770.         case 'sapdb' : break;
  3771.         default:
  3772.             $drivername = 'generic';
  3773.             break;
  3774.         }
  3775.         return $drivername;
  3776.     }
  3777.     
  3778.     function &NewPerfMonitor(&$conn)
  3779.     {
  3780.         $false = false;
  3781.         $drivername = _adodb_getdriver($conn->dataProvider,$conn->databaseType,true);
  3782.         if (!$drivername || $drivername == 'generic') return $false;
  3783.         include_once(ADODB_DIR.'/adodb-perf.inc.php');
  3784.         @include_once(ADODB_DIR."/perf/perf-$drivername.inc.php");
  3785.         $class = "Perf_$drivername";
  3786.         if (!class_exists($class)) return $false;
  3787.         $perf =& new $class($conn);
  3788.         
  3789.         return $perf;
  3790.     }
  3791.     
  3792.     function &NewDataDictionary(&$conn,$drivername=false)
  3793.     {
  3794.         $false = false;
  3795.         if (!$drivername) $drivername = _adodb_getdriver($conn->dataProvider,$conn->databaseType);
  3796.  
  3797.         include_once(ADODB_DIR.'/adodb-lib.inc.php');
  3798.         include_once(ADODB_DIR.'/adodb-datadict.inc.php');
  3799.         $path = ADODB_DIR."/datadict/datadict-$drivername.inc.php";
  3800.  
  3801.         if (!file_exists($path)) {
  3802.             ADOConnection::outp("Database driver '$path' not available");
  3803.             return $false;
  3804.         }
  3805.         include_once($path);
  3806.         $class = "ADODB2_$drivername";
  3807.         $dict =& new $class();
  3808.         $dict->dataProvider = $conn->dataProvider;
  3809.         $dict->connection = &$conn;
  3810.         $dict->upperName = strtoupper($drivername);
  3811.         $dict->quote = $conn->nameQuote;
  3812.         if (!empty($conn->_connectionID))
  3813.             $dict->serverInfo = $conn->ServerInfo();
  3814.         
  3815.         return $dict;
  3816.     }
  3817.  
  3818.  
  3819.     
  3820.     /*
  3821.         Perform a print_r, with pre tags for better formatting.
  3822.     */
  3823.     function adodb_pr($var,$as_string=false)
  3824.     {
  3825.         if ($as_string) ob_start();
  3826.         
  3827.         if (isset($_SERVER['HTTP_USER_AGENT'])) { 
  3828.             echo " <pre>\n";print_r($var);echo "</pre>\n";
  3829.         } else
  3830.             print_r($var);
  3831.             
  3832.         if ($as_string) {
  3833.             $s = ob_get_contents();
  3834.             ob_end_clean();
  3835.             return $s;
  3836.         }
  3837.     }
  3838.     
  3839.     /*
  3840.         Perform a stack-crawl and pretty print it.
  3841.         
  3842.         @param printOrArr  Pass in a boolean to indicate print, or an $exception->trace array (assumes that print is true then).
  3843.         @param levels Number of levels to display
  3844.     */
  3845.     function adodb_backtrace($printOrArr=true,$levels=9999)
  3846.     {
  3847.         global $ADODB_INCLUDED_LIB;
  3848.         if (empty($ADODB_INCLUDED_LIB)) include_once(ADODB_DIR.'/adodb-lib.inc.php');
  3849.         return _adodb_backtrace($printOrArr,$levels);
  3850.     }
  3851.     
  3852. } // defined
  3853. ?>